]> git.donarmstrong.com Git - kiibohd-controller.git/blob - arm.cmake
Adding initial Teensy 3 support, compiles, but not fully functional yet.
[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 #| Compiler flag to set the C Standard level.
66 #|     c89   = "ANSI" C
67 #|     gnu89 = c89 plus GCC extensions
68 #|     c99   = ISO C99 standard (not yet fully implemented)
69 #|     gnu99 = c99 plus GCC extensions
70 set( CSTANDARD "-std=gnu99" )
71
72
73 #| Warning Options
74 #|  -Wall...:     warning level
75 set( WARN "-Wall -g" )
76
77
78 #| Tuning Options
79 #|  -f...:        tuning, see GCC manual
80 set( TUNING "-mthumb -nostdlib" )
81
82
83 #| Optimization level, can be [0, 1, 2, 3, s]. 
84 #|     0 = turn off optimization. s = optimize for size.
85 #|     (Note: 3 is not always the best optimization level.)
86 set( OPT "s" )
87
88
89 #| Output Format
90 #| srec, ihex, binary
91 set( FORMAT "ihex" )
92
93
94 #| Processor frequency.
95 #|   Normally the first thing your program should do is set the clock prescaler,
96 #|   so your program will run at the correct speed.  You should also set this
97 #|   variable to same clock speed.  The _delay_ms() macro uses this, and many
98 #|   examples use this variable to calculate timings.  Do not add a "UL" here.
99 set( F_CPU "48000000" )
100
101
102 #| Dependency Files
103 #| Compiler flags to generate dependency files.
104 set( GENDEPFLAGS "-MMD" )
105
106
107 #| Compiler Flags
108 add_definitions( "-mcpu=${CPU} -DF_CPU=${F_CPU} -D_${CHIP}_=1 -O${OPT} ${TUNING} ${WARN} ${CSTANDARD} ${GENDEPFLAGS} -I${CMAKE_CURRENT_SOURCE_DIR}" )
109
110
111 #| Linker Flags
112 set( LINKER_FLAGS "-mcpu=${CPU} -Wl,-Map=${TARGET}.map,--cref -Wl,--gc-sections -mthumb -T${CMAKE_CURRENT_SOURCE_DIR}/Lib/${CHIP}.ld" )
113
114
115 #| Hex Flags (XXX, CMake seems to have issues if you quote the arguments for the custom commands...)
116 set( HEX_FLAGS -O ${FORMAT} -R .eeprom )
117
118
119 #| Lss Flags
120 set( LSS_FLAGS -h -S -z )
121