12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #ifndef RADIO_CONFIG_H
- #define RADIO_CONFIG_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define PACKET_BASE_ADDRESS_LENGTH (4UL)
- #define PACKET_STATIC_LENGTH (1UL)
- #define PACKET_PAYLOAD_MAXSIZE (PACKET_STATIC_LENGTH)
- void radio_configure(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|