#ifndef LNXUTILS_CRC_H
#define LNXUTILS_CRC_H

#include <stdint.h>


uint16_t crc16(uint8_t *buffer, uint16_t buffer_length);

int calculate_crc(uint8_t *req, int nb);

int modbus_data_check_crc(uint8_t *msg, int msg_length);

#endif
