Commit a01c680c authored by 李茂军's avatar 李茂军

frat:1.升级循环任务调度时间改为2ms 2.打开屏蔽的蓝牙相关任务 3.修改升级文件标签分类为MCUapp

parent 3805c087
...@@ -517,7 +517,7 @@ void Upgrade_BAT32A239_Task(void *arg) ...@@ -517,7 +517,7 @@ void Upgrade_BAT32A239_Task(void *arg)
{ {
UpgradeBAT32A239_1ms_Cnt = 0; UpgradeBAT32A239_1ms_Cnt = 0;
} }
if((UpgradeBAT32A239_1ms_Cnt + 2) % 20 == 0) if((UpgradeBAT32A239_1ms_Cnt + 2) % 10 == 0)
{ {
BAT32A239_MCU_Update(); BAT32A239_MCU_Update();
} }
......
...@@ -150,12 +150,12 @@ static void wifi_service_task(void *arg) ...@@ -150,12 +150,12 @@ static void wifi_service_task(void *arg)
TaskHandle_t Sys_Run_Taskshdl=NULL; TaskHandle_t Sys_Run_Taskshdl=NULL;
void app_main(void) void app_main(void)
{ {
// Protocol_User_Ctrl_Init(); Protocol_User_Ctrl_Init();
// BT_User_Init(); BT_User_Init();
// Ble_User_Init(); Ble_User_Init();
// Get_Mac_Init(); Get_Mac_Init();
// bsp_BT_Init(); bsp_BT_Init();
// bsp_Ble_Init(); bsp_Ble_Init();
bsp_Uart_Init(); bsp_Uart_Init();
printf("KL30 INIT OVER~~~~~~\r\n"); printf("KL30 INIT OVER~~~~~~\r\n");
......
...@@ -701,6 +701,8 @@ CONFIG_BTDM_BLE_ADV_REPORT_DISCARD_THRSHOLD=20 ...@@ -701,6 +701,8 @@ CONFIG_BTDM_BLE_ADV_REPORT_DISCARD_THRSHOLD=20
CONFIG_BTDM_RESERVE_DRAM=0xdb5c CONFIG_BTDM_RESERVE_DRAM=0xdb5c
CONFIG_BTDM_CTRL_HLI=y CONFIG_BTDM_CTRL_HLI=y
# end of Controller Options # end of Controller Options
# CONFIG_BT_HCI_LOG_DEBUG_EN is not set
# end of Bluetooth # end of Bluetooth
# CONFIG_BLE_MESH is not set # CONFIG_BLE_MESH is not set
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<label for="selectPartition">目标分区:</label> <label for="selectPartition">目标分区:</label>
<select id="selectPartition" name="selectPartition"> <select id="selectPartition" name="selectPartition">
<option selected value="RT200T-2.bin">Application</option> <option selected value="RT200T-2.bin">Application</option>
<option value="BAT32G139.bin">Nation</option> <option value="BAT32G139.bin">MCU_app</option>
</select> </select>
<br><br> <br><br>
<!-- 选择文本按钮 --> <!-- 选择文本按钮 -->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment