PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 3 roky
12345678910111213141516
  1. #include <TeensyThreads.h>
  2. volatile long int count = 0;
  3. void thread_func(int inc) {
  4. while(1) count += inc;
  5. }
  6. void setup() {
  7. threads.addThread(thread_func, 1);
  8. }
  9. void loop() {
  10. Serial.println(count);
  11. threads.delay(1000);
  12. }