Skip to content
Draft
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion Templates/Simple/MyName.csolution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,20 @@ solution:

created-for: CMSIS-Toolbox@2.6.0
cdefault: # use cdefault.yml for default toolchain settings
# compiler: AC6 # select a compiler (AC6, GCC, IAR, LLVM)
# Compilers that can be selected
select-compiler:
- compiler: AC6
- compiler: GCC
- compiler: IAR
- compiler: CLANG

# List of miscellaneous tool-specific controls
misc:
- for-compiler: AC6 # GDB requires DWARF 5, remove when using uVision Debugger
C-CPP:
- -gdwarf-5
ASM:
- -gdwarf-5

# List the packs that define the device and/or board, optional with minimum version
packs:
Expand Down
7 changes: 7 additions & 0 deletions Templates/Simple/main.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#include "RTE_Components.h"
#include CMSIS_device_header

int main() {
for (;;) {
}
}