Rev 1163 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1163 | Rev 1208 | ||
---|---|---|---|
Line 3... | Line 3... | ||
3 | MCU = atmega644p |
3 | MCU = atmega644p |
4 | F_CPU = 20000000 |
4 | F_CPU = 20000000 |
5 | #------------------------------------------------------------------- |
5 | #------------------------------------------------------------------- |
6 | VERSION_MAJOR = 0 |
6 | VERSION_MAJOR = 0 |
7 | VERSION_MINOR = 71 |
7 | VERSION_MINOR = 71 |
8 | VERSION_PATCH = 9 |
8 | VERSION_PATCH = 10 |
Line 9... | Line 9... | ||
9 | 9 | ||
10 | VERSION_SERIAL_MAJOR = 10 # Serial Protocol |
10 | VERSION_SERIAL_MAJOR = 10 # Serial Protocol |
11 | VERSION_SERIAL_MINOR = 0 # Serial Protocol |
11 | VERSION_SERIAL_MINOR = 0 # Serial Protocol |
12 | NC_SPI_COMPATIBLE = 3 # Navi-Kompatibilität |
12 | NC_SPI_COMPATIBLE = 3 # Navi-Kompatibilität |
Line 76... | Line 76... | ||
76 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)j |
76 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)j |
77 | endif |
77 | endif |
78 | ifeq ($(VERSION_PATCH), 10) |
78 | ifeq ($(VERSION_PATCH), 10) |
79 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)k |
79 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)k |
80 | endif |
80 | endif |
- | 81 | ifeq ($(VERSION_PATCH), 11) |
|
- | 82 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)l |
|
- | 83 | endif |
|
Line 81... | Line 84... | ||
81 | 84 | ||
82 | # Optimization level, can be [0, 1, 2, 3, s]. 0 turns off optimization. |
85 | # Optimization level, can be [0, 1, 2, 3, s]. 0 turns off optimization. |
- | 86 | # (Note: 3 is not always the best optimization level. See avr-libc FAQ.) |
|
83 | # (Note: 3 is not always the best optimization level. See avr-libc FAQ.) |
87 | # OPT = s |
Line 84... | Line 88... | ||
84 | OPT = s |
88 | OPT = 3 |
85 | 89 | ||
86 | ########################################################################################################## |
90 | ########################################################################################################## |
87 | # List C source files here. (C dependencies are automatically generated.) |
91 | # List C source files here. (C dependencies are automatically generated.) |