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.
|
- #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);
- }
|