mirror of
https://github.com/manuelbl/ttn-esp32.git
synced 2025-11-05 12:30:34 +01:00
Modifying to expose part of the LMIC controls
This commit is contained in:
@ -19,6 +19,12 @@
|
||||
#include "TTNProvisioning.h"
|
||||
#include "TTNLogging.h"
|
||||
|
||||
void LMIC_Controls::disableChannel(uint8_t channel){ LMIC_disableChannel( channel ); }
|
||||
void LMIC_Controls::enableSubBand(uint8_t band){ LMIC_enableSubBand( band ); }
|
||||
void LMIC_Controls::enableChannel(uint8_t channel){ LMIC_enableChannel( channel ); }
|
||||
void LMIC_Controls::disableSubBand(uint8_t band){ LMIC_disableSubBand( band ); }
|
||||
void LMIC_Controls::selectSubBand(uint8_t band){ LMIC_selectSubBand( band ); }
|
||||
|
||||
|
||||
/**
|
||||
* @brief Reason the user code is waiting
|
||||
|
||||
Reference in New Issue
Block a user