updated nrf24 sniffer & mousejacker

This commit is contained in:
Sil 333033
2023-07-16 16:27:15 +02:00
parent caa1bc9253
commit 9f94f2aa82
7 changed files with 92 additions and 39 deletions

View File

@@ -517,4 +517,14 @@ uint8_t nrf24_find_channel(
}
return ch;
}
bool nrf24_check_connected(FuriHalSpiBusHandle* handle) {
uint8_t status = nrf24_status(handle);
if(status != 0x00) {
return true;
} else {
return false;
}
}