]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Lib/CMake/avr.cmake
Reorganizing CMake build system.
[kiibohd-controller.git] / Lib / CMake / avr.cmake
1 ###| CMAKE Kiibohd Controller |###
2 #
3 # Jacob Alexander 2011-2014
4 # Due to this file's usefulness:
5 #
6 # Released into the Public Domain
7 #
8 # avr-gcc CMake Build Configuration
9 #
10 ###
11
12
13
14 #| Set the Compilers (must be set first)
15 include( CMakeForceCompiler )
16 cmake_force_c_compiler  ( avr-gcc AVRCCompiler )
17 cmake_force_cxx_compiler( avr-g++ AVRCxxCompiler )
18 set( _CMAKE_TOOLCHAIN_PREFIX avr- )
19
20
21
22 ###
23 # Atmel Defines and Linker Options
24 #
25
26 #| MCU Name
27 #|
28 #| "at90usb162"       # Teensy   1.0
29 #| "atmega32u4"       # Teensy   2.0
30 #| "at90usb646"       # Teensy++ 1.0
31 #| "at90usb1286"      # Teensy++ 2.0
32
33 set( MCU "${CHIP}" )
34
35 message( STATUS "MCU Selected:" )
36 message( "${MCU}" )
37
38
39 #| Extra Compiler Sources
40 #| Mostly for convenience functions like interrupt handlers
41 set( COMPILER_SRCS
42         # XXX Not needed for avr-gcc
43 )
44
45
46 #| CPU Type
47 #| This is only informational for AVR microcontrollers
48 #| The field can be determined by the microcontroller chip, but currently only one CPU type is used atm
49 set( CPU "megaAVR" )
50
51 message( STATUS "CPU Selected:" )
52 message( "${CPU}" )
53
54
55 #| USB Defines
56 set( VENDOR_ID  "0x16C0" )
57 set( PRODUCT_ID "0x047D" )
58
59
60 #| Compiler flag to set the C Standard level.
61 #|     c89   = "ANSI" C
62 #|     gnu89 = c89 plus GCC extensions
63 #|     c99   = ISO C99 standard (not yet fully implemented)
64 #|     gnu99 = c99 plus GCC extensions
65 set( CSTANDARD "-std=gnu99" )
66
67
68 #| Warning Options
69 #|  -Wall...:     warning level
70 set( WARN "-Wall" )
71
72
73 #| Tuning Options
74 #|  -f...:        tuning, see GCC manual and avr-libc documentation
75 #| NOTE: -fshort-wchar is specified to allow USB strings be passed conveniently
76 set( TUNING "-funsigned-char -funsigned-bitfields -ffunction-sections -fpack-struct -fshort-enums" )
77
78
79 #| Optimization level, can be [0, 1, 2, 3, s].
80 #|     0 = turn off optimization. s = optimize for size.
81 #|     (Note: 3 is not always the best optimization level. See avr-libc FAQ.)
82 set( OPT "s" )
83
84
85 #| Output Format
86 #| srec, ihex, binary
87 set( FORMAT "ihex" )
88
89
90 #| Processor frequency.
91 #|   Normally the first thing your program should do is set the clock prescaler,
92 #|   so your program will run at the correct speed.  You should also set this
93 #|   variable to same clock speed.  The _delay_ms() macro uses this, and many
94 #|   examples use this variable to calculate timings.  Do not add a "UL" here.
95 set( F_CPU "16000000" )
96
97
98 #| Dependency Files
99 #| Compiler flags to generate dependency files.
100 set( GENDEPFLAGS "-MMD -MP" )
101
102
103 #| Compiler Flags
104 add_definitions( "-mmcu=${MCU} -DF_CPU=${F_CPU} -D_${MCU}_=1 -O${OPT} ${TUNING} ${WARN} ${CSTANDARD} ${GENDEPFLAGS}" )
105
106
107 #| Linker Flags
108 set( LINKER_FLAGS "-mmcu=${MCU} -Wl,-Map=${TARGET}.map,--cref -Wl,--relax -Wl,--gc-sections" )
109
110
111 #| Hex Flags (XXX, CMake seems to have issues if you quote the arguments for the custom commands...)
112 set( HEX_FLAGS -O ${FORMAT} -R .eeprom -R .fuse -R .lock -R .signature )
113
114
115 #| Eep Flags (XXX, I've removed this target from the builds, but keeping the set line as a note)
116 set( EEP_FLAGS -j .eeprom --set-section-flags=.eeprom="alloc,load" --change-section-lma .eeprom=0 --no-change-warnings -O ${FORMAT} )
117
118
119 #| Lss Flags
120 set( LSS_FLAGS -h -S -z )
121