6.2.1.17 20181017 * Enable updated non-blocking PubSubClient as default MQTT client * Update TasmotaModbus and TasmotaSerial libraries for support of serial 8N2 communication * Add support for Pzem-003/017 DC Energy monitoring module (#3694) * Change support for Pzem-014/016 AC Energy monitoring module (#3694)
148 lines
4.0 KiB
C++
148 lines
4.0 KiB
C++
/*
|
|
TasmotaModbus.cpp - Basic modbus wrapper for TasmotaSerial for Tasmota
|
|
|
|
Copyright (C) 2018 Theo Arends
|
|
|
|
This library is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "TasmotaModbus.h"
|
|
|
|
TasmotaModbus::TasmotaModbus(int receive_pin, int transmit_pin) : TasmotaSerial(receive_pin, transmit_pin, 1)
|
|
{
|
|
mb_address = 0;
|
|
}
|
|
|
|
uint16_t CalculateCRC(uint8_t *frame, uint8_t num)
|
|
{
|
|
uint16_t crc = 0xFFFF;
|
|
uint16_t flag;
|
|
|
|
for (uint8_t i = 0; i < num; i++) {
|
|
crc ^= frame[i];
|
|
for (uint8_t j = 8; j; j--) {
|
|
if ((crc & 0x0001) != 0) { // If the LSB is set
|
|
crc >>= 1; // Shift right and XOR 0xA001
|
|
crc ^= 0xA001;
|
|
} else { // Else LSB is not set
|
|
crc >>= 1; // Just shift right
|
|
}
|
|
}
|
|
}
|
|
return crc;
|
|
}
|
|
|
|
int TasmotaModbus::Begin(long speed, int stop_bits)
|
|
{
|
|
int result = 0;
|
|
|
|
if (begin(speed, stop_bits)) {
|
|
result = 1;
|
|
if (hardwareSerial()) { result = 2; }
|
|
}
|
|
return result;
|
|
}
|
|
|
|
void TasmotaModbus::Send(uint8_t device_address, uint8_t function_code, uint16_t start_address, uint16_t register_count)
|
|
{
|
|
uint8_t frame[8];
|
|
|
|
mb_address = device_address; // Save address for receipt check
|
|
|
|
frame[0] = mb_address; // 0xFE default device address or dedicated like 0x01
|
|
frame[1] = function_code;
|
|
frame[2] = (uint8_t)(start_address >> 8);
|
|
frame[3] = (uint8_t)(start_address);
|
|
frame[4] = (uint8_t)(register_count >> 8);
|
|
frame[5] = (uint8_t)(register_count);
|
|
uint16_t crc = CalculateCRC(frame, 6);
|
|
frame[6] = (uint8_t)(crc);
|
|
frame[7] = (uint8_t)(crc >> 8);
|
|
|
|
flush();
|
|
write(frame, sizeof(frame));
|
|
}
|
|
|
|
bool TasmotaModbus::ReceiveReady()
|
|
{
|
|
return (available() > 4);
|
|
}
|
|
|
|
uint8_t TasmotaModbus::ReceiveBuffer(uint8_t *buffer, uint8_t register_count)
|
|
{
|
|
uint8_t len = 0;
|
|
uint32_t last = millis();
|
|
while ((available() > 0) && (len < (register_count *2) + 5) && (millis() - last < 10)) {
|
|
uint8_t data = (uint8_t)read();
|
|
if (!len) { // Skip leading data as provided by hardware serial
|
|
if (mb_address == data) {
|
|
buffer[len++] = data;
|
|
}
|
|
} else {
|
|
buffer[len++] = data;
|
|
if (3 == len) {
|
|
if (buffer[1] & 0x80) { // 01 84 02 f2 f1
|
|
return buffer[2]; // 1 = Illegal Function, 2 = Illegal Address, 3 = Illegal Data, 4 = Slave Error
|
|
}
|
|
}
|
|
}
|
|
last = millis();
|
|
}
|
|
|
|
if (len < 7) { return 7; } // 7 = Not enough data
|
|
if (len != buffer[2] + 5) { return 8; } // 8 = Unexpected result
|
|
|
|
uint16_t crc = (buffer[len -1] << 8) | buffer[len -2];
|
|
if (CalculateCRC(buffer, len -2) != crc) { return 9; } // 9 = crc error
|
|
|
|
return 0; // 0 = No error
|
|
}
|
|
|
|
uint8_t TasmotaModbus::Receive16BitRegister(uint16_t *value)
|
|
{
|
|
// 0 1 2 3 4 5 6
|
|
// 01 04 02 43 21 HH LL
|
|
// Id Cc Sz Regis Crc--
|
|
|
|
uint8_t buffer[7];
|
|
|
|
uint8_t error = ReceiveBuffer(buffer, 1); // 1 x 16bit register
|
|
if (!error) {
|
|
*value = (buffer[3] << 8) | buffer[4];
|
|
}
|
|
|
|
return error;
|
|
}
|
|
|
|
uint8_t TasmotaModbus::Receive32BitRegister(float *value)
|
|
{
|
|
// 0 1 2 3 4 5 6 7 8
|
|
// 01 04 04 87 65 43 21 HH LL
|
|
// Id Cc Sz Register--- Crc--
|
|
|
|
uint8_t buffer[9];
|
|
|
|
*value = NAN;
|
|
|
|
uint8_t error = ReceiveBuffer(buffer, 2); // 1 x 32bit register
|
|
if (!error) {
|
|
((uint8_t*)value)[3] = buffer[3];
|
|
((uint8_t*)value)[2] = buffer[4];
|
|
((uint8_t*)value)[1] = buffer[5];
|
|
((uint8_t*)value)[0] = buffer[6];
|
|
}
|
|
|
|
return error;
|
|
}
|