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