Subghz packet test (#512)

* subghz: add cli support for packet tx rx

* api-hal-subghz: add comments

* subghz_cli: fix typo

Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
gornekich
2021-06-08 12:51:16 +03:00
committed by GitHub
parent 216f8b4fb8
commit 498ffe8d2c
7 changed files with 213 additions and 18 deletions

View File

@@ -173,6 +173,12 @@ typedef struct {
bool CHIP_RDYn:1;
} CC1101Status;
typedef union {
CC1101Status status;
uint8_t status_raw;
} CC1101StatusRaw;
typedef struct {
uint8_t NUM_TXBYTES:7;
bool TXFIFO_UNDERFLOW:1;