PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

README.txt 512B

3 lat temu
1234
  1. The purpose of this example is to demonstrate how to use TeensyThreads as part of std and implement it such that a class could easily implement threading without much overhead
  2. The Runnable.h file is an abstract definition of how to use threads
  3. Any class that dervives from Runnable just needs to implement the runTarget(void *args) and start the thread.
  4. This specific example extends an example LED class such that an LED object can be constructed to blink for some duration, at some period, with some duty cycle