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
5e2d6761
Commit
5e2d6761
authored
11 years ago
by
px4dev
Browse files
Options
Downloads
Patches
Plain Diff
Remove our depdenency on CONFIG_ARCH_BOARD_* coming from <nuttx/config.h>
parent
c4498ce9
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
makefiles/board_px4fmu-v1.mk
+1
-0
1 addition, 0 deletions
makefiles/board_px4fmu-v1.mk
makefiles/board_px4io-v1.mk
+1
-0
1 addition, 0 deletions
makefiles/board_px4io-v1.mk
makefiles/firmware.mk
+4
-0
4 additions, 0 deletions
makefiles/firmware.mk
with
6 additions
and
0 deletions
makefiles/board_px4fmu-v1.mk
+
1
−
0
View file @
5e2d6761
...
...
@@ -6,5 +6,6 @@
# Configure the toolchain
#
CONFIG_ARCH
=
CORTEXM4F
CONFIG_BOARD
=
PX4FMU_V1
include
$(PX4_MK_DIR)/toolchain_gnu-arm-eabi.mk
This diff is collapsed.
Click to expand it.
makefiles/board_px4io-v1.mk
+
1
−
0
View file @
5e2d6761
...
...
@@ -6,5 +6,6 @@
# Configure the toolchain
#
CONFIG_ARCH
=
CORTEXM3
CONFIG_BOARD
=
PX4IO_V1
include
$(PX4_MK_DIR)/toolchain_gnu-arm-eabi.mk
This diff is collapsed.
Click to expand it.
makefiles/firmware.mk
+
4
−
0
View file @
5e2d6761
...
...
@@ -154,6 +154,10 @@ $(error Config $(CONFIG) references board $(BOARD), but no board definition file
endif
export
BOARD
include
$(BOARD_FILE)
ifeq
($(CONFIG_BOARD),)
$(
error
Board config
for
$(
BOARD
)
does not define CONFIG_BOARD
)
endif
EXTRADEFINES
+=
-DCONFIG_ARCH_BOARD_
$(
CONFIG_BOARD
)
$(info
%
BOARD
=
$(
BOARD
)
)
#
...
...
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