暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

radio.h 343B

12345678910111213
  1. #ifndef RADIO_H
  2. #define RADIO_H
  3. #include <stdint.h>
  4. #include <stdbool.h>
  5. #include "bme280_defs.h"
  6. #include "nrf24l01.h"
  7. bool Send_Get_Salt_Message(PACKET * packet, uint64_t * salt);
  8. bool Read_Salt_Message(PACKET * packet, uint64_t * salt);
  9. bool Send_Report_Message(PACKET * packet, uint64_t * salt, struct bme280_data * sensorData);
  10. #endif