feat: add option to disable radio calibration and update status error handling

This commit is contained in:
2025-08-07 14:51:57 +08:00
parent c4a61d2708
commit 72299b62ce
6 changed files with 57 additions and 25 deletions

View File

@ -284,10 +284,12 @@ inline const char *to_str(const ChipMode &mode) {
struct __attribute__((packed)) status_t {
// LSB
uint8_t reserved_1 : 1;
CommandStatus command_status : 3;
ChipMode chip_mode : 3;
uint8_t reserved_2 : 1;
// MSB
};
static_assert(sizeof(status_t) == 1);