Brak opisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

radio.h 369B

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); //TODO: put into own file
  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