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