瀏覽代碼

Squashed 'nrf24scan/' changes from 8e80d21be..d6d2d8736

d6d2d8736 fixing some big bugs
c0d5dbf3e move apps
REVERT: 8e80d21be fix
REVERT: 86edb2f25 fix for some fake nRF24
REVERT: 860b01fdd Merge branch 'master' of https://github.com/vad7/nrf24scan
REVERT: 8a241131d fix valuemutex
REVERT: e2c9b4045 Merge branch 'master' of https://github.com/vad7/nrf24scan
REVERT: 8c7e4e2a9 upd
REVERT: 2052ff767 mini NRF24 board support - 5V auto power on
REVERT: 19bd05b63 mini NRF24 board support - 5V auto power on
REVERT: b5149b199 fix rate
REVERT: f41aa46ae upd
REVERT: afc1fc21d upd
REVERT: 221c243d2 Update README.md
REVERT: 68f481986 gerber added
REVERT: 17fa1cf73 gerber added
REVERT: d84ece3ca gerber added
REVERT: 3432d2ca0 Merge branch 'master' of https://github.com/vad7/nrf24scan
REVERT: 93953ad24 gerber added
REVERT: ad566faad fix
REVERT: d0bbc7678 upd
REVERT: c17fe9d31 fix
REVERT: 04c924bb8 v2.1
REVERT: f98993ba7 v2.1
REVERT: 79ce29864 upd
REVERT: 750171d98 v2.0
REVERT: 6f3521729 counts the number of addresses received more than one time
REVERT: 773940835 added bit shift in sniff mode for better detection
REVERT: 0ef7aa910 v1.8
REVERT: 54ffbc63c fix, more info
REVERT: 962cc81f9 Sniff mode
REVERT: 48156f11f IN DEVELOP: sniffer mode by default - find packets with valid CRC
REVERT: cd38e5cb4 Update README.md
REVERT: a1bd299aa Update README.md
REVERT: 1a6e701aa Update README.md
REVERT: d2f99907b FAP v1.15
REVERT: d2e8112e2 FAP v1.15
REVERT: e01b7b3e8 FAP v1.15
REVERT: e3835c967 Distr FAP v1.15
REVERT: bb70e2b9a FAP v1.15
REVERT: 039702043 Release v1.15
REVERT: 79027ae52 Release v1.15
REVERT: 55329789e version 1.5
REVERT: ad41c9a29 Decode CRC in ESB packets scanned as non-ESB and marking them
REVERT: 3161d755b Update README.md
REVERT: dc703868e upd
REVERT: 7dfa65fc2 readme
REVERT: 5da6722f1 readme
REVERT: faf101414 upd readme
REVERT: 2a1b4d2da Optional decode the packet control field when ESB off
REVERT: e5df1ca6f upd (using RX_FIFO)
REVERT: 3da71802c fix
REVERT: 24d7beabb upd
REVERT: 0b24a1206 fix
REVERT: ca6757a5d view addresses on long press OK in the packets list
REVERT: e4265fe80 fix
REVERT: 5d0b06210 Update README.md
REVERT: f0698e9f5 some bugs fixed
REVERT: b6c3deeff New settings: Enhanced SB, Dynamic payload, CRC
REVERT: 6b8233458 Update README.md
REVERT: fe95d780d Update README.md
REVERT: 76299c69b upd
REVERT: aebfdc160 Update README.md
REVERT: 0b000747b Merge branch 'master' of https://github.com/vad7/nrf24scan
REVERT: 4db81ff32 Merge branch 'add-license-1' of https://github.com/vad7/nrf24scan
REVERT: ec54c52a2 upd
REVERT: 38bef041f Merge pull request #1 from vad7/add-license-1
REVERT: 2d9584013 Create LICENSE
REVERT: 4fe19b28f init

git-subtree-dir: nrf24scan
git-subtree-split: d6d2d8736f97dbb419b0250b884cb885ccc88c1e
Willy-JL 2 年之前
父節點
當前提交
976d14b267
共有 2 個文件被更改,包括 721 次插入616 次删除
  1. 710 604
      nrf24scan.c
  2. 11 12
      nrf24scan.h

File diff suppressed because it is too large
+ 710 - 604
nrf24scan.c


+ 11 - 12
nrf24scan.h

@@ -9,32 +9,31 @@
 #include <notification/notification_messages.h>
 
 typedef enum {
-	EventTypeTick,
-	EventTypeKey,
+    EventTypeTick,
+    EventTypeKey,
 } EventType;
 
 typedef struct {
-	EventType type;
-	InputEvent input;
+    EventType type;
+    InputEvent input;
 } PluginEvent;
 
 typedef struct {
-	FuriMutex* mutex;
+    FuriMutex* mutex;
 } PluginState;
 
 struct FOUND {
-	uint8_t addr_size;
-	uint8_t addr[5];
-	uint16_t total;
+    uint8_t addr_size;
+    uint8_t addr[5];
+    uint16_t total;
 };
 
 typedef struct {
     Gui* gui;
     FuriMessageQueue* event_queue;
     ViewPort* view_port;
-	Storage* storage;
-	NotificationApp* notification;
+    Storage* storage;
+    NotificationApp* notification;
     uint8_t* log_arr;
-	struct FOUND *found;
+    struct FOUND* found;
 } Nrf24Scan;
-

Some files were not shown because too many files changed in this diff