Since the firmware is under 32 KiB, I figured there's not much reason to use a microcontroller with 128 KiB of flash. The new boards use STM32F072x8 chips, which only have 64 KiB of flash. This allows for the firmware to grow, while not being quite so ridiculous as before. This commit sets the Makefile to put the configuration at the end of the 64 KiB flash chip, and to use a new linker script for the same chip.
|
|
||
96 |
|
96 |
|
97 |
|
97 |
|
98 |
|
98 |
|
99 |
|
|
|
|
99 |
|
|
100 |
|
100 |
|
101 |
|
101 |
|
102 |
|
102 |
|
|
|
||
191 |
|
191 |
|
192 |
|
192 |
|
193 |
|
193 |
|
194 |
|
|
|
|
194 |
|
|
195 |
|
195 |
|
196 |
|
196 |
|
197 |
|
197 |
|
|
|
||
|
1 |
|
|
|
2 |
|
|
|
3 |
|
|
|
4 |
|
|
|
5 |
|
|
|
6 |
|
|
|
7 |
|
|
|
8 |
|
|
|
9 |
|
|
|
10 |
|
|
|
11 |
|
|
|
12 |
|
|
|
13 |
|
|
|
14 |
|
|
|
15 |
|
|
|
16 |
|
|
|
17 |
|
|
|
18 |
|
|
|
19 |
|
|
|
20 |
|
|
|
21 |
|
|
|
22 |
|
|
|
23 |
|
|
|
24 |
|
|
|
25 |
|
|
|
26 |
|
|
|
27 |
|
|
|
28 |
|
|
|
29 |
|
|
|
30 |
|
|
|
31 |
|
|
|
32 |
|
|
|
33 |
|
|
|
34 |
|
|
|
35 |
|
|
|
36 |
|
|
|
37 |
|
|
|
38 |
|
|
|
39 |
|
|
|
40 |
|
|
|
41 |
|
|
|
42 |
|
|
|
43 |
|
|
|
44 |
|
|
|
45 |
|
|
|
46 |
|
|
|
47 |
|
|
|
48 |
|
|
|
49 |
|
|
|
50 |
|
|
|
51 |
|
|
|
52 |
|
|
|
53 |
|