supla-device
Loading...
Searching...
No Matches
crc16.h
1// SPDX-FileCopyrightText: AC SOFTWARE SP. Z O.O.
2// SPDX-License-Identifier: GPL-2.0-or-later
3
4#ifndef SRC_SUPLA_CRC16_H_
5#define SRC_SUPLA_CRC16_H_
6
7#include <stdint.h>
8
9uint16_t crc16_update(uint16_t crc, uint8_t a);
10uint16_t calculateCrc16(const uint8_t *data, int size);
11
12#endif // SRC_SUPLA_CRC16_H_