mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-11 07:56:39 +02:00
* new structure
* slim definitions of fields and units * prepared multi inverter setup (not finished now)
This commit is contained in:
parent
58d79beb8c
commit
d0731f7065
17 changed files with 813 additions and 672 deletions
149
tools/esp8266/hmSystem.h
Normal file
149
tools/esp8266/hmSystem.h
Normal file
|
@ -0,0 +1,149 @@
|
|||
#ifndef __HM_SYSTEM_H__
|
||||
#define __HM_SYSTEM_H__
|
||||
|
||||
#include "hmInverters.h"
|
||||
#include "hmRadio.h"
|
||||
|
||||
typedef struct {
|
||||
uint8_t sendCh;
|
||||
uint8_t packet[MAX_RF_PAYLOAD_SIZE];
|
||||
} packet_t;
|
||||
|
||||
|
||||
template <class RADIO, class BUFFER, uint8_t MAX_INVERTER, class RECORDTYPE=float>
|
||||
class HmSystem {
|
||||
public:
|
||||
typedef RADIO RadioType;
|
||||
RadioType Radio;
|
||||
typedef BUFFER BufferType;
|
||||
BufferType BufCtrl;
|
||||
|
||||
HmSystem() {
|
||||
mNumInv = 0;
|
||||
}
|
||||
~HmSystem() {
|
||||
// TODO: cleanup
|
||||
}
|
||||
|
||||
inverter_t *addInverter(const char *name, uint64_t serial, uint8_t type) {
|
||||
if(MAX_INVERTER <= mNumInv) {
|
||||
DPRINT("max number of inverters reached!");
|
||||
return NULL;
|
||||
}
|
||||
inverter_t *p = &mInverter[mNumInv];
|
||||
p->id = mNumInv++;
|
||||
p->serial.u64 = serial;
|
||||
p->type = type;
|
||||
uint8_t len = strlen(name);
|
||||
strncpy(p->name, name, (len > 20) ? 20 : len);
|
||||
getAssignment(p);
|
||||
toRadioId(p);
|
||||
|
||||
if(NULL == p->assign) {
|
||||
DPRINT("no assignment for type found!");
|
||||
return NULL;
|
||||
}
|
||||
else {
|
||||
mRecord = new RECORDTYPE[p->listLen];
|
||||
memset(mRecord, 0, sizeof(RECORDTYPE) * p->listLen);
|
||||
return p;
|
||||
}
|
||||
}
|
||||
|
||||
inverter_t *findInverter(uint8_t buf[]) {
|
||||
inverter_t *p;
|
||||
for(uint8_t i = 0; i < mNumInv; i++) {
|
||||
p = &mInverter[i];
|
||||
if((p->serial.b[3] == buf[0])
|
||||
&& (p->serial.b[2] == buf[1])
|
||||
&& (p->serial.b[1] == buf[2])
|
||||
&& (p->serial.b[0] == buf[3]))
|
||||
return p;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
inverter_t *getInverterByPos(uint8_t pos) {
|
||||
if(mInverter[pos].serial.u64 != 0ULL)
|
||||
return &mInverter[pos];
|
||||
else
|
||||
return NULL;
|
||||
}
|
||||
|
||||
const char *getFieldName(inverter_t *p, uint8_t pos) {
|
||||
return fields[p->assign[pos].fieldId];
|
||||
}
|
||||
|
||||
const char *getUnit(inverter_t *p, uint8_t pos) {
|
||||
return units[p->assign[pos].unitId];
|
||||
}
|
||||
|
||||
uint64_t getSerial(inverter_t *p) {
|
||||
return p->serial.u64;
|
||||
}
|
||||
|
||||
void updateSerial(inverter_t *p, uint64_t serial) {
|
||||
p->serial.u64 = serial;
|
||||
}
|
||||
|
||||
uint8_t getChannel(inverter_t *p, uint8_t pos) {
|
||||
return p->assign[pos].ch;
|
||||
}
|
||||
|
||||
uint8_t getCmdId(inverter_t *p, uint8_t pos) {
|
||||
return p->assign[pos].cmdId;
|
||||
}
|
||||
|
||||
void addValue(inverter_t *p, uint8_t pos, uint8_t buf[]) {
|
||||
uint8_t ptr = p->assign[pos].start;
|
||||
uint8_t end = ptr + p->assign[pos].num;
|
||||
uint16_t div = p->assign[pos].div;
|
||||
|
||||
uint32_t val = 0;
|
||||
do {
|
||||
val <<= 8;
|
||||
val |= buf[ptr];
|
||||
} while(++ptr != end);
|
||||
|
||||
mRecord[pos] = (RECORDTYPE)(val) / (RECORDTYPE)(div);
|
||||
}
|
||||
|
||||
RECORDTYPE getValue(inverter_t *p, uint8_t pos) {
|
||||
return mRecord[pos];
|
||||
}
|
||||
|
||||
uint8_t getNumInverters(void) {
|
||||
return mNumInv;
|
||||
}
|
||||
|
||||
private:
|
||||
void toRadioId(inverter_t *p) {
|
||||
p->radioId.u64 = 0ULL;
|
||||
p->radioId.b[4] = p->serial.b[0];
|
||||
p->radioId.b[3] = p->serial.b[1];
|
||||
p->radioId.b[2] = p->serial.b[2];
|
||||
p->radioId.b[1] = p->serial.b[3];
|
||||
p->radioId.b[0] = 0x01;
|
||||
}
|
||||
|
||||
void getAssignment(inverter_t *p) {
|
||||
if(INV_TYPE_HM600 == p->type) {
|
||||
p->listLen = (uint8_t)(HM1200_LIST_LEN);
|
||||
p->assign = (byteAssign_t*)hm600assignment;
|
||||
}
|
||||
else if(INV_TYPE_HM1200 == p->type) {
|
||||
p->listLen = (uint8_t)(HM1200_LIST_LEN);
|
||||
p->assign = (byteAssign_t*)hm1200assignment;
|
||||
}
|
||||
else {
|
||||
p->listLen = 0;
|
||||
p->assign = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
inverter_t mInverter[MAX_INVERTER]; // TODO: only one inverter supported!!!
|
||||
uint8_t mNumInv;
|
||||
RECORDTYPE *mRecord;
|
||||
};
|
||||
|
||||
#endif /*__HM_SYSTEM_H__*/
|
Loading…
Add table
Add a link
Reference in a new issue