Update apps

This commit is contained in:
Willy-JL
2023-08-30 18:59:32 +02:00
parent 160ab755a2
commit ee37769ee2
308 changed files with 2314 additions and 801 deletions

View File

@@ -6,7 +6,6 @@ App(
cdefines=["APP_NRF24SCAN"],
requires=["gui"],
stack_size=2 * 1024,
order=60,
fap_icon="nrf24scan_10px.png",
fap_category="GPIO",
fap_private_libs=[

View File

@@ -553,4 +553,4 @@ uint8_t nrf24_set_mac(uint8_t mac_addr, uint8_t* mac, uint8_t mlen) {
uint8_t addr[5];
for(int i = 0; i < mlen; i++) addr[i] = mac[mlen - i - 1];
return nrf24_write_buf_reg(nrf24_HANDLE, mac_addr, addr, mlen);
}
}

View File

@@ -384,4 +384,4 @@ uint32_t bytes_to_int32(uint8_t* bytes, bool bigendian);
#ifdef __cplusplus
}
#endif
#endif

View File

@@ -9,6 +9,7 @@
#include <dialogs/dialogs.h>
#include <input/input.h>
#include <stdlib.h>
#include <dolphin/dolphin.h>
#include <nrf24.h>
#include <u8g2.h>