* added rx channel switching

* switched to crc8 check for valid packet-payload
This commit is contained in:
lumapu 2022-05-09 20:47:05 +02:00
parent 8f444cee2f
commit 37206847c5
11 changed files with 217 additions and 111 deletions

View file

@ -70,6 +70,10 @@ class CircularBuffer {
return m_fill == m_size;
}
inline uint8_t getFill(void) const {
return m_fill;
}
/** Aquire record on front of the buffer, for writing.
* After filling the record, it has to be pushed to actually
* add it to the buffer.