mirror of
https://github.com/lumapu/ahoy.git
synced 2025-07-24 03:37:12 +02:00
0.7.43
* improved RSSI for NRF24, now it's read per package (and inverter) #1129 * arranged `heap` related info together in `/system` * fix display navi during save * clean up binary output, separated to folders
This commit is contained in:
parent
a515dbbde1
commit
3600a2e28c
13 changed files with 81 additions and 60 deletions
|
@ -145,9 +145,11 @@ void app::loopStandard(void) {
|
|||
if (mConfig->serial.debug) {
|
||||
DPRINT(DBG_INFO, F("RX "));
|
||||
DBGPRINT(String(p->len));
|
||||
DBGPRINT(F("B Ch"));
|
||||
DBGPRINT(F(" CH"));
|
||||
DBGPRINT(String(p->ch));
|
||||
DBGPRINT(F(" | "));
|
||||
DBGPRINT(F(", "));
|
||||
DBGPRINT(String(p->rssi));
|
||||
DBGPRINT(F("dBm | "));
|
||||
ah::dumpBuf(p->packet, p->len);
|
||||
}
|
||||
mStat.frmCnt++;
|
||||
|
@ -172,7 +174,7 @@ void app::loopStandard(void) {
|
|||
if (mConfig->serial.debug) {
|
||||
DPRINT(DBG_INFO, F("RX "));
|
||||
DBGPRINT(String(p->data[0]));
|
||||
DBGPRINT(F(" RSSI "));
|
||||
DBGPRINT(F(", "));
|
||||
DBGPRINT(String(p->rssi));
|
||||
DBGPRINT(F("dBm | "));
|
||||
ah::dumpBuf(&p->data[1], p->data[0]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue