Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Nucleo F446ZE port to FreeRTOS_apps #11

Merged
merged 14 commits into from
Jul 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 2 additions & 1 deletion apps/ping_pong/app.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,10 @@ void * trigger_guard_condition(void *args){
void appMain(void *argument)
{
//Init RCL options

rcl_init_options_t options = rcl_get_zero_initialized_init_options();
rcl_init_options_init(&options, rcl_get_default_allocator());

// Init RCL context
rcl_context_t context = rcl_get_zero_initialized_context();
rcl_init(0, NULL, &options, &context);
Expand Down
4 changes: 4 additions & 0 deletions microros_nucleo_f446ze_extensions/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.mxproject
arm_toolchain.cmake
build/
core
25 changes: 25 additions & 0 deletions microros_nucleo_f446ze_extensions/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"type": "cortex-debug",
"servertype": "openocd",
"request": "launch",
"name": "Debug microROS",
"executable": "${workspaceRoot}/build/micro-ROS.elf",
"rtos": "FreeRTOS",
"device": "STM32F446ZE",
"armToolchainPath": "${workspaceRoot}/../../toolchain/bin/",
"configFiles": [
"interface/stlink-v2-1.cfg",
"target/stm32f4x.cfg",
],
"cwd": "${workspaceRoot}",
"svdFile": "./STM32F446.svd"
}
]
}
Loading