mirror of
https://github.com/manuelbl/ttn-esp32.git
synced 2025-07-27 03:42:51 +02: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