iPhone App Directory

Multithreading on Arduino


Make posts on using concurrency for multithreading on arduino.

1 comment:

Unknown said...

If you don't want to pay the code size price of a RTOS or the execution speed price of a VM (which is what concurrency.cc uses), I warmly recommend cooperative tasking with coroutines: http://www.chiark.greenend.org.uk/~sgtatham/coroutines.html

This will cost you only a dozen bytes and half a dozen cycles per exit/re-entry point.