Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alberto Ruiz Garcia
Firmware
Commits
8f280159
Commit
8f280159
authored
9 years ago
by
Lorenz Meier
Browse files
Options
Downloads
Plain Diff
Merge pull request #2949 from jgoppert/cmake-ddd
Added ddd support.
parents
f1bc33ff
55f963be
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile
+1
-1
1 addition, 1 deletion
Makefile
cmake/toolchains/Toolchain-arm-none-eabi.cmake
+13
-1
13 additions, 1 deletion
cmake/toolchains/Toolchain-arm-none-eabi.cmake
src/firmware/nuttx/CMakeLists.txt
+26
-0
26 additions, 0 deletions
src/firmware/nuttx/CMakeLists.txt
with
40 additions
and
2 deletions
Makefile
+
1
−
1
View file @
8f280159
...
...
@@ -153,7 +153,7 @@ distclean: clean
@
cd
../../..
# targets handled by cmake
cmake_targets
=
test
upload package package_source debug debug_
io
check_weak libuavcan
cmake_targets
=
test
upload package package_source debug debug_
tui debug_ddd debug_io debug_io_tui debug_io_ddd
check_weak libuavcan
$(
foreach
targ,
$(
cmake_targets
)
,
$(
eval
$(
call cmake-targ,
$(
targ
))))
.PHONY
:
clean
...
...
This diff is collapsed.
Click to expand it.
cmake/toolchains/Toolchain-arm-none-eabi.cmake
+
13
−
1
View file @
8f280159
...
...
@@ -49,6 +49,9 @@ endforeach()
foreach
(
tool gdb gdbtui
)
string
(
TOUPPER
${
tool
}
TOOL
)
find_program
(
${
TOOL
}
arm-none-eabi-
${
tool
}
)
if
(
NOT
${
TOOL
}
)
message
(
STATUS
"could not find
${
tool
}
"
)
endif
()
endforeach
()
# os tools
...
...
@@ -56,7 +59,16 @@ foreach(tool echo patch grep rm mkdir nm genromfs cp touch make unzip)
string
(
TOUPPER
${
tool
}
TOOL
)
find_program
(
${
TOOL
}
${
tool
}
)
if
(
NOT
${
TOOL
}
)
message
(
FATAL_ERROR
"could not find
${
TOOL
}
"
)
message
(
FATAL_ERROR
"could not find
${
tool
}
"
)
endif
()
endforeach
()
# optional os tools
foreach
(
tool ddd
)
string
(
TOUPPER
${
tool
}
TOOL
)
find_program
(
${
TOOL
}
${
tool
}
)
if
(
NOT
${
TOOL
}
)
message
(
STATUS
"could not find
${
tool
}
"
)
endif
()
endforeach
()
...
...
This diff is collapsed.
Click to expand it.
src/firmware/nuttx/CMakeLists.txt
+
26
−
0
View file @
8f280159
...
...
@@ -63,18 +63,44 @@ if(NOT ${BOARD} STREQUAL "sim")
configure_file
(
gdbinit.in .gdbinit
)
add_custom_target
(
debug
COMMAND
${
GDB
}
${
CMAKE_CURRENT_BINARY_DIR
}
/firmware_nuttx
DEPENDS firmware_nuttx
${
CMAKE_CURRENT_BINARY_DIR
}
/.gdbinit
)
add_custom_target
(
debug_tui
COMMAND
${
GDBTUI
}
${
CMAKE_CURRENT_BINARY_DIR
}
/firmware_nuttx
DEPENDS firmware_nuttx
${
CMAKE_CURRENT_BINARY_DIR
}
/.gdbinit
)
add_custom_target
(
debug_ddd
COMMAND
${
DDD
}
--debugger
${
GDB
}
${
CMAKE_CURRENT_BINARY_DIR
}
/firmware_nuttx
DEPENDS firmware_nuttx
${
CMAKE_CURRENT_BINARY_DIR
}
/.gdbinit
)
add_custom_target
(
debug_io
COMMAND
${
GDB
}
${
CMAKE_BINARY_DIR
}
/src/modules/px4iofirmware/
${
config_io_board
}
_
${
LABEL
}
DEPENDS firmware_nuttx
${
CMAKE_CURRENT_BINARY_DIR
}
/.gdbinit
)
add_custom_target
(
debug_io_tui
COMMAND
${
GDBTUI
}
${
CMAKE_BINARY_DIR
}
/src/modules/px4iofirmware/
${
config_io_board
}
_
${
LABEL
}
DEPENDS firmware_nuttx
${
CMAKE_CURRENT_BINARY_DIR
}
/.gdbinit
)
add_custom_target
(
debug_io_ddd
COMMAND
${
DDD
}
--debugger
${
GDB
}
${
CMAKE_BINARY_DIR
}
/src/modules/px4iofirmware/
${
config_io_board
}
_
${
LABEL
}
DEPENDS firmware_nuttx
${
CMAKE_CURRENT_BINARY_DIR
}
/.gdbinit
)
px4_add_upload
(
OUT upload OS
${
OS
}
BOARD
${
BOARD
}
BUNDLE
${
fw_file
}
)
endif
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment