tmp
This commit is contained in:
parent
01807f47ab
commit
044f97075e
3 changed files with 8 additions and 7 deletions
4
.vscode/launch.json
vendored
4
.vscode/launch.json
vendored
|
@ -16,7 +16,7 @@
|
|||
"device": "STM32F446RETx", //MCU used
|
||||
"interface": "swd",
|
||||
"serialNumber": "", //Set ST-Link ID if you use multiple at the same time
|
||||
"runToEntryPoint": "main",
|
||||
// "runToEntryPoint": "main",
|
||||
"svdFile": "${config:STM32VSCodeExtension.cubeCLT.path}/STMicroelectronics_CMSIS_SVD/STM32F446.svd",
|
||||
"v1": false, //Change it depending on ST Link version
|
||||
"serverpath": "${config:STM32VSCodeExtension.cubeCLT.path}/STLink-gdb-server/bin/ST-LINK_gdbserver",
|
||||
|
@ -43,7 +43,7 @@
|
|||
"device": "STM32F446RETx", //MCU used
|
||||
"interface": "swd",
|
||||
"serialNumber": "", //Set ST-Link ID if you use multiple at the same time
|
||||
"runToEntryPoint": "main",
|
||||
// "runToEntryPoint": "main",
|
||||
"svdFile": "${config:STM32VSCodeExtension.cubeCLT.path}/STMicroelectronics_CMSIS_SVD/STM32F446.svd",
|
||||
"v1": false, //Change it depending on ST Link version
|
||||
"serverpath": "${config:STM32VSCodeExtension.cubeCLT.path}/STLink-gdb-server/bin/ST-LINK_gdbserver",
|
||||
|
|
|
@ -41,7 +41,8 @@ add_executable(${CMAKE_PROJECT_NAME})
|
|||
add_subdirectory(cmake/stm32cubemx)
|
||||
|
||||
add_subdirectory(components/platform)
|
||||
add_subdirectory(components/f4ll)
|
||||
# add_subdirectory(components/f4ll)
|
||||
add_subdirectory(../f4ll components/f4ll)
|
||||
add_subdirectory(components/app)
|
||||
|
||||
# Link directories setup
|
||||
|
|
|
@ -45,8 +45,8 @@ void app::main()
|
|||
queue_ts();
|
||||
m_safe_conout.print("-------------------------------------------\n");
|
||||
while (true) {
|
||||
queue_ts();
|
||||
m_safe_conout.print("Hello woooooooooooooooooooooooooooooooorld!\n");
|
||||
// queue_ts();
|
||||
// m_safe_conout.print("Hello woooooooooooooooooooooooooooooooorld!\n");
|
||||
vTaskDelay(pdMS_TO_TICKS(500));
|
||||
LL_GPIO_TogglePin(LD2_GPIO_Port, LD2_Pin);
|
||||
}
|
||||
|
@ -71,8 +71,8 @@ void app::cli_task()
|
|||
{
|
||||
while (1) {
|
||||
vTaskDelay(pdMS_TO_TICKS(10000));
|
||||
queue_ts();
|
||||
m_safe_conout.print(">>> TICK <<<\n");
|
||||
// queue_ts();
|
||||
// m_safe_conout.print(">>> TICK <<<\n");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue