// SPDX-License-Identifier: Apache-2.0 // Copyright Pionix GmbH and Contributors to EVerest #ifndef CRC16_HPP #define CRC16_HPP #include uint16_t calculate_modbus_crc16(const uint8_t* buf, int len); #endif