amiro-blt / Target / Modules / flash.mk @ 43464dd5
History | View | Annotate | Download (3.015 KB)
1 |
################################################################################ |
---|---|
2 |
# AMiRo-BLT is the bootloader and flashing toolchain for the base version of # |
3 |
# the Autonomous Mini Robot (AMiRo). It is based on OpenBLT developed by # |
4 |
# Feaser (see <http://feaser.com/en/openblt.php>). # |
5 |
# Copyright (C) 2016..2020 Thomas Schöpping et al. # |
6 |
# # |
7 |
# This program is free software: you can redistribute it and/or modify # |
8 |
# it under the terms of the GNU General Public License as published by # |
9 |
# the Free Software Foundation, either version 3 of the License, or # |
10 |
# (at your option) any later version. # |
11 |
# # |
12 |
# This program is distributed in the hope that it will be useful, # |
13 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of # |
14 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # |
15 |
# GNU General Public License for more details. # |
16 |
# # |
17 |
# You should have received a copy of the GNU General Public License # |
18 |
# along with this program. If not, see <http://www.gnu.org/licenses/>. # |
19 |
# # |
20 |
# This research/work was supported by the Cluster of Excellence Cognitive # |
21 |
# Interaction Technology 'CITEC' (EXC 277) at Bielefeld University, which is # |
22 |
# funded by the German Research Foundation (DFG). # |
23 |
################################################################################ |
24 |
|
25 |
|
26 |
# select a stm32flash installation |
27 |
ifneq ($(wildcard $(dir $(lastword $(MAKEFILE_LIST)))../../Host/Source/stm32flash/stm32flash),) |
28 |
# perferably use a local installation, if such exists |
29 |
STM32FLASH := $(dir $(lastword $(MAKEFILE_LIST)))../../Host/Source/stm32flash/stm32flash |
30 |
else |
31 |
# alternatively try a system installation |
32 |
STM32FLASH := stm32flash |
33 |
endif |
34 |
|
35 |
# set the STM32FLASH_PORT if no custom value has been specified |
36 |
ifeq ($(STM32FLASH_PORT),) |
37 |
ifeq ($(OS),Windows_NT) |
38 |
STM32FLASH_PORT ?= COM5 |
39 |
else |
40 |
# check whether /dev/ttyAMiRo0 exists |
41 |
ifeq ($(wildcard /dev/ttyAMiRo0),) |
42 |
# check whether /dev/ttyUSB0 exists |
43 |
ifeq ($(wildcard /dev/ttyUSB0),) |
44 |
# set to /dev/ttyAMiRo0 for meaningful error message |
45 |
STM32FLASH_PORT ?= /dev/ttyAMiRo0 |
46 |
else |
47 |
# legacy support |
48 |
STM32FLASH_PORT ?= /dev/ttyUSB0 |
49 |
endif |
50 |
else |
51 |
STM32FLASH_PORT ?= /dev/ttyAMiRo0 |
52 |
endif |
53 |
endif |
54 |
endif |
55 |
BAUDRATE = 115200 |
56 |
BINARY = $(BIN_PATH)/$(PROJ_NAME).hex |
57 |
GPIO_ENTER_SEQUENCE = "rts,-dtr,-rts" |
58 |
GPIO_EXIT_SEQUENCE = "rts,dtr,-rts" |
59 |
|
60 |
flash: $(BINARY) |
61 |
@echo +++ Flashing |
62 |
$(STM32FLASH) $(STM32FLASH_PORT) -i $(GPIO_ENTER_SEQUENCE):$(GPIO_EXIT_SEQUENCE) -R -b $(BAUDRATE) -w $(BINARY) |
63 |
|