mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-22 21:36:11 +02:00
Fix typos throughout code
Found with `codespell -w -i3 src/**` and reviewed manually. Fixes: #1112
This commit is contained in:
parent
fd2fd206f0
commit
ae3e98e77d
13 changed files with 30 additions and 30 deletions
|
@ -65,7 +65,7 @@ struct calcFunc_t {
|
|||
|
||||
template<class T=float>
|
||||
struct record_t {
|
||||
byteAssign_t* assign; // assigment of bytes in payload
|
||||
byteAssign_t* assign; // assignment of bytes in payload
|
||||
uint8_t length; // length of the assignment list
|
||||
T *record; // data pointer
|
||||
uint32_t ts; // timestamp of last received payload
|
||||
|
@ -151,7 +151,7 @@ class Inverter {
|
|||
InverterStatus status; // indicates the current inverter status
|
||||
std::array<alarm_t, 10> lastAlarm; // holds last 10 alarms
|
||||
uint8_t alarmNxtWrPos; // indicates the position in array (rolling buffer)
|
||||
uint16_t alarmCnt; // counts the total number of occured alarms
|
||||
uint16_t alarmCnt; // counts the total number of occurred alarms
|
||||
int8_t rssi; // HMS and HMT inverters only
|
||||
|
||||
|
||||
|
@ -361,7 +361,7 @@ class Inverter {
|
|||
//}
|
||||
}
|
||||
else
|
||||
DPRINTLN(DBG_WARN, F("add with unknown assginment"));
|
||||
DPRINTLN(DBG_WARN, F("add with unknown assignment"));
|
||||
}
|
||||
else
|
||||
DPRINTLN(DBG_ERROR, F("addValue: assignment not found with cmd 0x"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue