mirror of
https://github.com/arendst/Tasmota.git
synced 2025-04-21 13:27:16 +00:00

* sml ams crypto support * add ams library * fix crc names * fix TLS dependency * Update library.properties * Update xsns_53_sml.ino
11 lines
179 B
C
11 lines
179 B
C
#ifndef _CRC_H
|
|
#define _CRC_H
|
|
|
|
#include "Arduino.h"
|
|
#include <stdint.h>
|
|
|
|
uint16_t AMS_crc16(const uint8_t* p, int len);
|
|
uint16_t AMS_crc16_x25(const uint8_t* p, int len);
|
|
|
|
#endif
|