]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Lib/CMake/avr.cmake
Adding more CMake log information.
[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 #| Chip Size Database
40 #| Teensy 1.0
41 if ( "${CHIP}" MATCHES "at90usb162" )
42         set( SIZE_RAM      512 )
43         set( SIZE_FLASH  15872 )
44
45 #| Teensy 2.0
46 elseif ( "${CHIP}" MATCHES "atmega32u4" )
47         set( SIZE_RAM     2560 )
48         set( SIZE_FLASH  32256 )
49
50 #| Teensy++ 1.0
51 elseif ( "${CHIP}" MATCHES "at90usb646" )
52         set( SIZE_RAM     4096 )
53         set( SIZE_FLASH  64512 )
54
55 #| Teensy++ 2.0
56 elseif ( "${CHIP}" MATCHES "at90usb1286" )
57         set( SIZE_RAM     8192 )
58         set( SIZE_FLASH 130048 )
59
60 #| Unknown AVR
61 else ()
62         message( AUTHOR_WARNING "CHIP: ${CHIP} - Unknown AVR microcontroller" )
63 endif ()
64
65
66 #| Extra Compiler Sources
67 #| Mostly for convenience functions like interrupt handlers
68 set( COMPILER_SRCS
69         # XXX Not needed for avr-gcc
70 )
71
72
73 #| CPU Type
74 #| This is only informational for AVR microcontrollers
75 #| The field can be determined by the microcontroller chip, but currently only one CPU type is used atm
76 set( CPU "megaAVR" )
77
78 message( STATUS "CPU Selected:" )
79 message( "${CPU}" )
80
81
82 #| USB Defines
83 set( VENDOR_ID       "0x1C11" )
84 set( PRODUCT_ID      "0xB04D" )
85 set( BOOT_VENDOR_ID  "0x16C0" ) # TODO Double check, this is likely incorrect
86 set( BOOT_PRODUCT_ID "0x047D" )
87
88
89 #| Only Teensy based AVRs supported
90 set ( TEENSY 1 )
91 message( STATUS "Bootloader Type:" )
92 message( "Teensy" )
93
94
95 #| Compiler flag to set the C Standard level.
96 #|     c89   = "ANSI" C
97 #|     gnu89 = c89 plus GCC extensions
98 #|     c99   = ISO C99 standard (not yet fully implemented)
99 #|     gnu99 = c99 plus GCC extensions
100 set( CSTANDARD "-std=gnu99" )
101
102
103 #| Warning Options
104 #|  -Wall...:     warning level
105 set( WARN "-Wall" )
106
107
108 #| Tuning Options
109 #|  -f...:        tuning, see GCC manual and avr-libc documentation
110 #| NOTE: -fshort-wchar is specified to allow USB strings be passed conveniently
111 set( TUNING "-funsigned-char -funsigned-bitfields -ffunction-sections -fpack-struct -fshort-enums" )
112
113
114 #| Optimization level, can be [0, 1, 2, 3, s].
115 #|     0 = turn off optimization. s = optimize for size.
116 #|     (Note: 3 is not always the best optimization level. See avr-libc FAQ.)
117 set( OPT "s" )
118
119
120 #| Output Format
121 #| srec, ihex, binary
122 set( FORMAT "ihex" )
123
124
125 #| Processor frequency.
126 #|   Normally the first thing your program should do is set the clock prescaler,
127 #|   so your program will run at the correct speed.  You should also set this
128 #|   variable to same clock speed.  The _delay_ms() macro uses this, and many
129 #|   examples use this variable to calculate timings.  Do not add a "UL" here.
130 set( F_CPU "16000000" )
131
132
133 #| Dependency Files
134 #| Compiler flags to generate dependency files.
135 set( GENDEPFLAGS "-MMD -MP" )
136
137
138 #| Compiler Flags
139 add_definitions( "-mmcu=${MCU} -DF_CPU=${F_CPU} -D_${MCU}_=1 -O${OPT} ${TUNING} ${WARN} ${CSTANDARD} ${GENDEPFLAGS}" )
140
141
142 #| Linker Flags
143 set( LINKER_FLAGS "-mmcu=${MCU} -Wl,-Map=link.map,--cref -Wl,--relax -Wl,--gc-sections" )
144
145
146 #| Hex Flags (XXX, CMake seems to have issues if you quote the arguments for the custom commands...)
147 set( HEX_FLAGS -O ${FORMAT} -R .eeprom -R .fuse -R .lock -R .signature )
148
149
150 #| Eep Flags (XXX, I've removed this target from the builds, but keeping the set line as a note)
151 set( EEP_FLAGS -j .eeprom --set-section-flags=.eeprom="alloc,load" --change-section-lma .eeprom=0 --no-change-warnings -O ${FORMAT} )
152
153
154 #| Lss Flags
155 set( LSS_FLAGS -h -S -z )
156