radio_config.h 832 B

123456789101112131415161718192021
  1. /* Copyright (c) 2009 Nordic Semiconductor. All Rights Reserved.
  2. *
  3. * The information contained herein is property of Nordic Semiconductor ASA.
  4. * Terms and conditions of usage are described in detail in NORDIC
  5. * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
  6. *
  7. * Licensees are granted free, non-transferable use of the information. NO
  8. * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
  9. * the file.
  10. *
  11. */
  12. #ifndef RADIO_CONFIG_H
  13. #define RADIO_CONFIG_H
  14. #define PACKET_BASE_ADDRESS_LENGTH (4UL) //!< Packet base address length field size in bytes
  15. #define PACKET_STATIC_LENGTH (1UL) //!< Packet static length in bytes
  16. #define PACKET_PAYLOAD_MAXSIZE (PACKET_STATIC_LENGTH) //!< Packet payload maximum size in bytes
  17. void radio_configure(void);
  18. #endif