1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys/net/loramac: add device class enum

This commit is contained in:
Alexandre Abadie 2018-01-08 07:45:52 +01:00
parent 2f4a7e28e9
commit dd9e75a469

View File

@ -304,6 +304,15 @@ extern "C" {
* @name LoRaMAC parameters indexes
*/
/**
* @brief Device class
*/
typedef enum {
LORAMAC_CLASS_A, /**< Class A device */
LORAMAC_CLASS_B, /**< Class B device */
LORAMAC_CLASS_C, /**< Class C device */
} loramac_class_t;
/**
* @brief LoRaMAC network join procedure type
*/