]> git.donarmstrong.com Git - kiibohd-controller.git/blob - arm.cmake
CMake generated strings that configure the USB info section
[kiibohd-controller.git] / arm.cmake
1 ###| CMAKE Kiibohd Controller |###
2 #
3 # Jacob Alexander 2011-2013
4 # Due to this file's usefulness:
5 #
6 # Released into the Public Domain
7 #
8 # Freescale ARM CMake Build Configuration
9 #
10 ###
11
12
13
14 #| Set the Compilers (must be set first)
15 include( CMakeForceCompiler )
16 cmake_force_c_compiler  ( arm-none-eabi-gcc AVRCCompiler )
17 cmake_force_cxx_compiler( arm-none-eabi-g++ AVRCxxCompiler )
18
19
20 #| Compiler Binaries
21 set( OBJCOPY "arm-none-eabi-objcopy" )
22 set( OBJDUMP "arm-none-eabi-objdump" )
23 set( NM      "arm-none-eabi-nm"      )
24 set( SIZE    "arm-none-eabi-size"    )
25
26
27
28 ###
29 # ARM Defines and Linker Options
30 #
31
32 #| Chip Name (Linker)
33 #| You _MUST_ set this to match the board you are using
34 #| type "make clean" after changing this, so all files will be rebuilt
35 #|
36 #| "mk20dx128"        # Teensy   3.0
37 set( CHIP "mk20dx128" )
38
39 message( STATUS "Chip Selected:" )
40 message( "${CHIP}" )
41
42
43 #| CPU Type
44 #| You _MUST_ set this to match the board you are using
45 #| type "make clean" after changing this, so all files will be rebuilt
46 #|
47 #| "cortex-m4"        # Teensy   3.0
48 set( CPU "cortex-m4" )
49
50 message( STATUS "CPU Selected:" )
51 message( "${CPU}" )
52
53
54 #| Extra Compiler Sources
55 #| Mostly for convenience functions like interrupt handlers
56 set( COMPILER_SRCS
57         Lib/${CHIP}.c
58         Lib/delay.c
59 )
60
61 message( STATUS "Compiler Source Files:" )
62 message( "${COMPILER_SRCS}" )
63
64
65 #| USB Defines
66 set( VENDOR_ID  "0x16C0" )
67 set( PRODUCT_ID "0x0487" )
68
69
70 #| Compiler flag to set the C Standard level.
71 #|     c89   = "ANSI" C
72 #|     gnu89 = c89 plus GCC extensions
73 #|     c99   = ISO C99 standard (not yet fully implemented)
74 #|     gnu99 = c99 plus GCC extensions
75 set( CSTANDARD "-std=gnu99" )
76
77
78 #| Warning Options
79 #|  -Wall...:     warning level
80 set( WARN "-Wall -g" )
81
82
83 #| Tuning Options
84 #|  -f...:        tuning, see GCC manual
85 #| NOTE: -fshort-wchar is specified to allow USB strings be passed conveniently
86 set( TUNING "-mthumb -nostdlib -fdata-sections -ffunction-sections -fshort-wchar" )
87
88
89 #| Optimization level, can be [0, 1, 2, 3, s]. 
90 #|     0 = turn off optimization. s = optimize for size.
91 #|     (Note: 3 is not always the best optimization level.)
92 set( OPT "s" )
93
94
95 #| Output Format
96 #| srec, ihex, binary
97 set( FORMAT "ihex" )
98
99
100 #| Processor frequency.
101 #|   Normally the first thing your program should do is set the clock prescaler,
102 #|   so your program will run at the correct speed.  You should also set this
103 #|   variable to same clock speed.  The _delay_ms() macro uses this, and many
104 #|   examples use this variable to calculate timings.  Do not add a "UL" here.
105 set( F_CPU "48000000" )
106
107
108 #| Dependency Files
109 #| Compiler flags to generate dependency files.
110 set( GENDEPFLAGS "-MMD" )
111
112
113 #| Compiler Flags
114 add_definitions( "-mcpu=${CPU} -DF_CPU=${F_CPU} -D_${CHIP}_=1 -O${OPT} ${TUNING} ${WARN} ${CSTANDARD} ${GENDEPFLAGS}" )
115
116
117 #| Linker Flags
118 set( LINKER_FLAGS "-mcpu=${CPU} -Wl,-Map=${TARGET}.map,--cref -Wl,--gc-sections -mthumb -Wl,--no-wchar-size-warning -T${CMAKE_CURRENT_SOURCE_DIR}/Lib/${CHIP}.ld" )
119
120
121 #| Hex Flags (XXX, CMake seems to have issues if you quote the arguments for the custom commands...)
122 set( HEX_FLAGS -O ${FORMAT} -R .eeprom )
123
124
125 #| Lss Flags
126 set( LSS_FLAGS -h -S -z )
127