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

Merge pull request #8336 from aabadie/pr/loramac_class

sys/net/loramac: add device class enum
This commit is contained in:
Martine Lenders 2018-01-09 14:27:17 +01:00 committed by GitHub
commit 7c166d9e1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
*/