Skip to content
Snippets Groups Projects
Commit a95bea6c authored by Jose Alamos's avatar Jose Alamos
Browse files

ieee802154: add brief tag to configuration macros

parent f50a239f
No related branches found
No related tags found
No related merge requests found
...@@ -116,24 +116,39 @@ extern const uint8_t ieee802154_addr_bcast[IEEE802154_ADDR_BCAST_LEN]; ...@@ -116,24 +116,39 @@ extern const uint8_t ieee802154_addr_bcast[IEEE802154_ADDR_BCAST_LEN];
* @ingroup config * @ingroup config
* @{ * @{
*/ */
/**
* @brief IEEE802.15.4 default sub-GHZ channel
*/
#ifndef IEEE802154_DEFAULT_SUBGHZ_CHANNEL #ifndef IEEE802154_DEFAULT_SUBGHZ_CHANNEL
#define IEEE802154_DEFAULT_SUBGHZ_CHANNEL (5U) #define IEEE802154_DEFAULT_SUBGHZ_CHANNEL (5U)
#endif #endif
/**
* @brief IEEE802.15.4 default channel
*/
#ifndef IEEE802154_DEFAULT_CHANNEL #ifndef IEEE802154_DEFAULT_CHANNEL
#define IEEE802154_DEFAULT_CHANNEL (26U) #define IEEE802154_DEFAULT_CHANNEL (26U)
#endif #endif
/**
* @brief IEEE802.15.4 default sub-GHZ page
*/
#ifndef IEEE802154_DEFAULT_SUBGHZ_PAGE #ifndef IEEE802154_DEFAULT_SUBGHZ_PAGE
#define IEEE802154_DEFAULT_SUBGHZ_PAGE (2U) #define IEEE802154_DEFAULT_SUBGHZ_PAGE (2U)
#endif #endif
/**
* @brief IEEE802.15.4 default PANID
*/
#ifndef IEEE802154_DEFAULT_PANID #ifndef IEEE802154_DEFAULT_PANID
#define IEEE802154_DEFAULT_PANID (0x0023U) #define IEEE802154_DEFAULT_PANID (0x0023U)
#endif #endif
/**
* @brief IEEE802.15.4 default TX power (in dBm)
*/
#ifndef IEEE802154_DEFAULT_TXPOWER #ifndef IEEE802154_DEFAULT_TXPOWER
#define IEEE802154_DEFAULT_TXPOWER (0) /* in dBm */ #define IEEE802154_DEFAULT_TXPOWER (0)
#endif #endif
/** @} */ /** @} */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment