PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

21 line
342B

  1. #ifndef FreqCount_h
  2. #define FreqCount_h
  3. #include <Arduino.h>
  4. class FreqCountClass {
  5. public:
  6. #if(!defined(__IMXRT1062__))
  7. static void begin(uint16_t msec);
  8. #else
  9. static void begin(uint32_t usec);
  10. #endif
  11. static uint8_t available(void);
  12. static uint32_t read(void);
  13. static void end(void);
  14. };
  15. extern FreqCountClass FreqCount;
  16. #endif