説明なし
選択できるのは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