26 lines
363 B
C

//#include <proc/p32mx440f256h.h>
#include "E220Module.h"
#include "BoardCfg.h"
#include "timer.h"
int InitLoraModule()
{
return RET_OK;
}
int SetLoraModuleTxMode()
{
LORA_MODULE_M0_PIN = 1;
LORA_MODULE_M1_PIN = 1;
return RET_OK;
}
int SetLoraModuleConfigMode()
{
LORA_MODULE_M0_PIN = 0;
LORA_MODULE_M1_PIN = 0;
return RET_OK;
}