Questions tagged [odroid]

The Odroid is a single-board computer and a tablet computer created by Hardkernel Co., Ltd., an open-source hardware company located in the Republic of Korea.

The Odroid is a single-board computer and a tablet computer created by Hardkernel Co., Ltd., an open-source hardware company located in the Republic of Korea.

137 questions
0
votes
1 answer

pyaudio throwing "shared memfd open() failed" error when initialized

I am using pyaudio but I got some error import pyaudio p = pyaudio.PyAudio() This is my error shared memfd open() failed: Function not implemented shared memfd open() failed: Function not implemented ALSA lib pulse.c:243:(pulse_connect)…
0
votes
1 answer

Is it possible to successfully run "DJI GO4" or "UgCS for DJI" on Odroid C2?

I am building a ground station for planning the UAV missions. I have a computer with UgCS software, and I need SBC with a touchscreen and running "DJI Go4" and "UgCS for DJI" applications. Both applications I try run on Odroid C2 with Android…
0
votes
1 answer

How can I strip down core-image-sato and remove selected apps/packages?

I want to build a stripped version of core-image-sato for Odroid-C2. Currently, everything related to Openhanded Sato mobile environment gets into the image when I compile/build image using yocto. I want to remove Leafpad, Shutdown, Media Player,…
Gaurav Pathak
  • 1,065
  • 11
  • 28
0
votes
1 answer

Unable to find a matching set of capabilities while running selenium(3.141.0) with geckodriver(0.24.0) on Arch Linux

First of all, I read about this, but I'm not using python 2.7 and geckodriver 0.19.1. So, I tried to get some data from the website every hour. I installed selenium 3.141.0 on my python 3.7.3 and geckodriver 0.24.0 on my Arch Linux for Odroid…
SaGwa
  • 462
  • 3
  • 5
0
votes
1 answer

Odroid XU4 with Yocto and GUI (gtk+3 error wayland-egl not found)

I am trying to build odroid-x11-image on thud. This is my local.conf: MACHINE ??= "odroid-xu4" DISTRO ?= "poky" PACKAGE_CLASSES ?= "package_ipk" USER_CLASSES ?= "buildstats image-mklibs image-prelink" IMAGE_INSTALL_append = " opencv…
David Bensoussan
  • 2,887
  • 2
  • 38
  • 55
0
votes
0 answers

Execution file cannot execute after cross-compiling on a X86 computer (Ubuntu 16.04) and move to arm board (odroid, Ubuntu Mate 18.04)

I am new in ARM architecture. I want to compile a simple c code (hello world) and move the output executor onto odroid xu4. (Ubuntu mate 18.04) But when I move it to odroid. I got this: bash: ./hello: No such file or directory I download a…
林建銘
  • 1
  • 1
0
votes
2 answers

How to rotate display orientation on Odroid XU4 Ubuntu 16.04

How can i rotate display orientation on Odroid XU4 running Ubuntu 16.04? I want to make portrait mode. Is it even possible for this Odroid?
BrokenCoin
  • 97
  • 13
0
votes
0 answers

openCL cv2.UMat object is not iterable

well actually i dont really understand how to use this T-API opencl and still newbie at it, in the documentation https://www.learnopencv.com/opencv-transparent-api/ it use cv2.UMat to the .image file and then read it. In my problem i want to use…
0
votes
0 answers

libwayland-egl.so is installed by both wayland and mali-t62x

I am trying to build image with weston for the odroid xu4 device, but I am getting this errors: ERROR: weston-4.0.0-r0 do_prepare_recipe_sysroot: The file /usr/lib/libwayland-egl.so is installed by both wayland and mali-t62x, aborting ERROR:…
Igor
  • 1
  • 2
0
votes
0 answers

Any Raspberry Pi alternative that DOES work with HDMI auto-switch?

Are there any computers that don't cost much more than Raspberry Pi 3, but unlike it, CAN be used with an HDMI auto-switch? The Raspberry Pi is an "always-on" computer, so auto-sensing doesn't work with it. I don't know if that is also the case…
0
votes
1 answer

Available(Free) Disk Space in Linux shows negative?

#include int GET_DISK_SPACE() { struct statvfs sbuf; statvfs("/home/odroid", &sbuf); printf("Bytes left:%ld\n", sbuf.f_frsize*sbuf.f_bavail); } Wrote this simple function to get disk space on my linux machine and it returns…
user6552697
0
votes
1 answer

Odroid GPIO pins in ROS without sudo access

Odroid running Ubuntu Mate 16.04 and ROS Kinetic. I have wiringPi2 installed for accessing the GPIO pins. I am able to use the GPIO pins through a Python script, but they require sudo access. I have a ROS node (written in Python) in which I want to…
akshayk07
  • 2,092
  • 1
  • 20
  • 32
0
votes
1 answer

WiringPi ODROID C2 Python reading analogue input

The ODROID C2 is a board similar to the Raspberry PI. I have installed and configured WiringPi as specified by the website for my board. Running gpio readall returns the table: +------+-----+----------+------+ Model ODROID-C2…
www139
  • 4,960
  • 3
  • 31
  • 56
0
votes
0 answers

Erase Everything on key press

I have a application that is running Ubuntu on a Odroid (Single Board Computer). I want to secure it in such a way that any end user cannot enter into the operating system or change anything. I have two solution in mind: - Disable all usb ports and…
0
votes
0 answers

Howto use Linux 64 Bit Machine to compile Qt Application for 32 bit armV7

I an developing for an Odroid XU4 which is ARM V7 32 Bit Ubuntu MATE. I know that I could develop on the embedded device directly, but this is not a suitable setup for my Team. Thus I would like to develop on my 64 Bit Linux maptop and cross…