PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- #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);
- }
|