Modifying to expose part of the LMIC controls

This commit is contained in:
Aaron Covrig
2020-06-14 00:03:04 -04:00
parent e29477fa7e
commit 8b28a72eec
2 changed files with 19 additions and 0 deletions

View File

@ -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