PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- #include <TeensyThreads.h>
-
- volatile long int count = 0;
-
- void thread_func(int inc) {
- while(1) count += inc;
- }
-
- void setup() {
- threads.addThread(thread_func, 1);
- }
-
- void loop() {
- Serial.println(count);
- threads.delay(1000);
- }
|