/** * @copyright Utilitech AS 2023 * License: Fair Source * */ #ifndef _CRC_H #define _CRC_H #include "Arduino.h" #include uint16_t crc16(const uint8_t* p, int len); uint16_t crc16_x25(const uint8_t* p, int len); #endif