chg: hw status - now prints number of dictionary keys loaded. Dont print if zero/default empty 0xffff

This commit is contained in:
iceman1001 2019-05-14 14:57:56 -04:00
commit a988c8ffef
3 changed files with 38 additions and 1 deletions

View file

@ -412,6 +412,7 @@ void SendStatus(void) {
DbpString(_BLUE_("Installed StandAlone Mode"));
ModInfo();
Flashmem_print_info();
reply_old(CMD_ACK, 1, 0, 0, 0, 0);
}
@ -1647,7 +1648,7 @@ void __attribute__((noreturn)) AppMain(void) {
// Check if there is a packet available
PacketCommandNG rx;
memset(&rx.data, 0, sizeof(rx.data));
int ret = receive_ng(&rx);
if (ret == PM3_SUCCESS) {
PacketReceived(&rx);