PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

20 rindas
549B

  1. // RHCRC.h
  2. //
  3. // Definitions for RadioHead compatible CRC outines.
  4. //
  5. // These routines originally derived from Arduino source code. See RHCRC.cpp
  6. // for copyright information
  7. // $Id: RHCRC.h,v 1.1 2014/06/24 02:40:12 mikem Exp $
  8. #ifndef RHCRC_h
  9. #define RHCRC_h
  10. #include <RadioHead.h>
  11. extern uint16_t RHcrc16_update(uint16_t crc, uint8_t a);
  12. extern uint16_t RHcrc_xmodem_update (uint16_t crc, uint8_t data);
  13. extern uint16_t RHcrc_ccitt_update (uint16_t crc, uint8_t data);
  14. extern uint8_t RHcrc_ibutton_update(uint8_t crc, uint8_t data);
  15. #endif