fix support_module define bug

This commit is contained in:
Liu_Weichao 2024-01-11 09:48:16 +08:00
parent 009b8a0a5a
commit ff4e53a980
1 changed files with 13 additions and 9 deletions

View File

@ -91,7 +91,7 @@ enum ModulesType
static const char* device_name = "矽数通4G"; static const char* device_name = "矽数通4G";
static const char* device_type = "xishutong-arm32"; static const char* device_type = "xishutong-arm32";
static const char* device_serial_num = "123456789"; static const char* device_serial_num = "123456789";
static int support_module = MODULES_NULL; static int support_module = MODULES_ALL;
#endif #endif
#ifdef APPLICATION_WEBSERVER_XISHUTONG #ifdef APPLICATION_WEBSERVER_XISHUTONG
@ -325,20 +325,24 @@ static void NetMqttDisconnect(void)
******************************************************************************/ ******************************************************************************/
static void NetLoraConnect(void) static void NetLoraConnect(void)
{ {
char* tx_params[5] = {"TestLoraRadio", "tx", "1", "2000", "2"}; if (MODULES_LORA == support_module) {
extern int TestLoraRadio(int argc, char *argv[]); char* tx_params[5] = {"TestLoraRadio", "tx", "1", "2000", "2"};
extern int TestLoraRadio(int argc, char *argv[]);
if (0 == net_lora_info.lora_init_flag) { if (0 == net_lora_info.lora_init_flag) {
net_lora_info.lora_init_flag = 1; net_lora_info.lora_init_flag = 1;
}
TestLoraRadio(5, tx_params);
net_lora_info.connect_status = 1;
} }
TestLoraRadio(5, tx_params);
net_lora_info.connect_status = 1;
} }
static void NetLoraDisconnect(void) static void NetLoraDisconnect(void)
{ {
net_lora_info.connect_status = 0; if (MODULES_LORA == support_module) {
net_lora_info.connect_status = 0;
}
} }
/******************************************************************************* /*******************************************************************************