You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kempt-kinkajou-2023/cybergarden-aggregator/lib/TransmissionModule/TransmissionModule.cpp

27 lines
549 B

//
// Created by o.likhogub on 10/7/2023.
//
#include "TransmissionModule.h"
#define MSG_LENGTH 5
#define ECC_LENGTH 4
#define TOTAL_LENGTH (MSG_LENGTH + ECC_LENGTH)
bool TransmissionModule::receive(uint8_t &sensor_id, MeasureData &data) {
uint8_t buf[TOTAL_LENGTH];
if (!transmitterModule->receive(buf, TOTAL_LENGTH)) {
return false;
}
uint8_t msg[MSG_LENGTH];
if (!reedSolomonModule->decode(buf, msg)) {
return false;
}
sensor_id = msg[0];
memcpy((void *) &data, msg+1, 4);
return true;
}