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