This is not a real udoo question but standard Ubuntu: To restrict a process to a specific CPU, you use the command taskset. taskset --cpu-list...
It is a little bit hidden in de docs but on http://www.udoo.org/docs-neo/Cookbook_Linux/Device_Tree_Editor.html it is shown that it is...
Hmm i see now my post is the same as your second option.... What did not work?
I would give this method a try https://www.raspberrypi.org/forums/viewtopic.php?t=116671&p=794397 Do not follow the Arduino instructions as it is...
check this https://github.com/UDOOboard/serial_libraries_examples as a start to setup communication between M4 and A9 It is written for Udoo Quad...
There is a udoo Neo PHP serial library that could do your job:...
It is a known issue with bash. http://udoo.org/forum/index.php?threads/3532/ With python it works.
I understand that you need to use the Neo, but a Neo has 2 Processors, 1 Linux processor (A9) with is own Input/Output pins and a Arduino (M4)...
Did you read this http://www.udoo.org/docs-neo/Arduino_M4_Processor/How_to_control_the_9-axis_motion_sensors_from_the_M4_Core.html
Try pygame, a library of python. It can handle input events and music. The only downside I had was the HDMI output hampering. How is your...
Great! I don't see a problem here, just some quick and dirty code :-) You don't have to serial.flush Just be sure you are reading the data on the...
Serial.Read will not wait for something to receive. It will just read and go on wether something received or not. You have to validate that you...
You are still not waiting with sending data. Your sketch is starts as soon as the serial connection is ready. But are you ready for reading it...
As I already told you Neo does not like to fill the serial buffer. You are now only sending, not reading, already right after reboot and filling...
Matteo, what are you trying to do? You are sending but not reading. What I understand is that you have a sketch that is sending serial data right...
If you edit the /opt/dtweb/public/boards/neo/board.js file you can add the other pwm pins manually. You have to take care of the pin numbering as...
Thanks jas-mx! How did you connect your camera to the Neo (which neo pins have what input?) and did you have to do something with the device tree...
There is also a new udoobuntu version coming out based on version 14.04. You can find the RC1 version in the download page:...
This is what I use: Python: arduino = serial.Serial('/dev/ttyMCC',115200,timeout=0) arduino.flushOutput() arduino.flushInput() serial_data =...
I am not close to my board but I believe I have timeout set to zero. As this is a virtual serial connection it is not necessary to have a timeout...
Separate names with a comma.