Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
RT200T_ESP32
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
RT200T
RT200T_ESP32
Commits
a01c680c
Commit
a01c680c
authored
Jun 05, 2024
by
李茂军
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
frat:1.升级循环任务调度时间改为2ms 2.打开屏蔽的蓝牙相关任务 3.修改升级文件标签分类为MCUapp
parent
3805c087
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
8 deletions
+10
-8
Protocol_User.c
RT200T_2_ESP32/main/Protocol_User.c
+1
-1
main_user.c
RT200T_2_ESP32/main/main_user.c
+6
-6
sdkconfig
RT200T_2_ESP32/sdkconfig
+2
-0
ota_page.html
RT200T_2_ESP32/source/wifi/ota_page.html
+1
-1
No files found.
RT200T_2_ESP32/main/Protocol_User.c
View file @
a01c680c
...
...
@@ -517,7 +517,7 @@ void Upgrade_BAT32A239_Task(void *arg)
{
UpgradeBAT32A239_1ms_Cnt
=
0
;
}
if
((
UpgradeBAT32A239_1ms_Cnt
+
2
)
%
2
0
==
0
)
if
((
UpgradeBAT32A239_1ms_Cnt
+
2
)
%
1
0
==
0
)
{
BAT32A239_MCU_Update
();
}
...
...
RT200T_2_ESP32/main/main_user.c
View file @
a01c680c
...
...
@@ -150,12 +150,12 @@ static void wifi_service_task(void *arg)
TaskHandle_t
Sys_Run_Taskshdl
=
NULL
;
void
app_main
(
void
)
{
//
Protocol_User_Ctrl_Init();
//
BT_User_Init();
//
Ble_User_Init();
//
Get_Mac_Init();
//
bsp_BT_Init();
//
bsp_Ble_Init();
Protocol_User_Ctrl_Init
();
BT_User_Init
();
Ble_User_Init
();
Get_Mac_Init
();
bsp_BT_Init
();
bsp_Ble_Init
();
bsp_Uart_Init
();
printf
(
"KL30 INIT OVER~~~~~~
\r\n
"
);
...
...
RT200T_2_ESP32/sdkconfig
View file @
a01c680c
...
...
@@ -701,6 +701,8 @@ CONFIG_BTDM_BLE_ADV_REPORT_DISCARD_THRSHOLD=20
CONFIG_BTDM_RESERVE_DRAM=0xdb5c
CONFIG_BTDM_CTRL_HLI=y
# end of Controller Options
# CONFIG_BT_HCI_LOG_DEBUG_EN is not set
# end of Bluetooth
# CONFIG_BLE_MESH is not set
...
...
RT200T_2_ESP32/source/wifi/ota_page.html
View file @
a01c680c
...
...
@@ -13,7 +13,7 @@
<label
for=
"selectPartition"
>
目标分区:
</label>
<select
id=
"selectPartition"
name=
"selectPartition"
>
<option
selected
value=
"RT200T-2.bin"
>
Application
</option>
<option
value=
"BAT32G139.bin"
>
Nation
</option>
<option
value=
"BAT32G139.bin"
>
MCU_app
</option>
</select>
<br><br>
<!-- 选择文本按钮 -->
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment