123456789101112131415161718192021 |
- #ifndef __MAIN_H_
- #define __MAIN_H_
- #include <stdint.h>
- #include <stdbool.h>
- #include <stdio.h>
- #pragma pack(1)
- typedef struct
- {
- uint32_t deviceId;
- uint8_t rfChannel;
- uint8_t channelStep;
- int8_t txPower;
- uint8_t rfBaudrate;
- uint8_t chipType;
- uint8_t beepNumb;
- uint8_t checkSum;
- }userParams_ts;
- #pragma pack()
- #endif
|