Page 1 of 1

Multithreading or Multitasking?

Posted: Fri Oct 31, 2014 11:38 am
by tarun2121
Hello All
I need to use multithreading with micropython? Since there is no such library included by default(correct me if i am wrong). How can I use mutithreading then? or is there any alternative?


-Tarun

Re: Multithreading or Multitasking?

Posted: Fri Oct 31, 2014 2:35 pm
by dhylands
A search in the forum using the word multithreading brings up this tthread: http://forum.micropython.org/viewtopic.php?f=2&t=281

Re: Multithreading or Multitasking?

Posted: Sat Nov 01, 2014 8:18 am
by pythoncoder
For a simple implementation of cooperative multi-threading see
https://github.com/peterhinch/Micropython-scheduler

Regards, Pete