Updating Debug Modules to new abstracted hierarchy
- Also added some extra CMake build messages for indicating the Compiler family and chip being built for
This commit is contained in:
parent
14158009b2
commit
a31f0e064a
6 changed files with 52 additions and 9 deletions
|
@ -36,6 +36,9 @@ set( SIZE "arm-none-eabi-size" )
|
|||
#| "mk20dx128" # Teensy 3.0
|
||||
set( CHIP "mk20dx128" )
|
||||
|
||||
message( STATUS "Chip Selected:" )
|
||||
message( "${CHIP}" )
|
||||
|
||||
|
||||
#| CPU Type
|
||||
#| You _MUST_ set this to match the board you are using
|
||||
|
@ -44,6 +47,9 @@ set( CHIP "mk20dx128" )
|
|||
#| "cortex-m4" # Teensy 3.0
|
||||
set( CPU "cortex-m4" )
|
||||
|
||||
message( STATUS "CPU Selected:" )
|
||||
message( "${CPU}" )
|
||||
|
||||
|
||||
#| Extra Compiler Sources
|
||||
#| Mostly for convenience functions like interrupt handlers
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue