PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Print.ino 233B

il y a 3 ans
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. }