Changeset - 287a302c9d20
[Not reviewed]
default
0 1 1
Ethan Zonca - 11 years ago 2014-06-20 21:15:24
ez@ethanzonca.com
Renamed to therm and added flashing script
2 files changed with 3 insertions and 1 deletions:
0 comments (0 inline, 0 general)
Makefile
Show inline comments
 

	
 
TARGET:=micro-pid
 
TARGET:=therm
 
TOOLCHAIN_PATH:=/usr/bin
 
TOOLCHAIN_PREFIX:=arm-none-eabi
 
OPTLVL:=3 # Optimization level, can be [0, 1, 2, 3, s].
 

	
 
#PROJECT_NAME:=$(notdir $(lastword $(CURDIR)))
 
TOP:=$(shell readlink -f "../..")
 
DISCOVERY:=Utilities/STM32L100C-Discovery
 
STMLIB:=Libraries
 
STD_PERIPH:=$(STMLIB)/STM32L1xx_StdPeriph_Driver
 
STARTUP:=$(STMLIB)/CMSIS/Device/ST/STM32L1xx/Source/Templates/gcc_ride7
 
LINKER_SCRIPT:=$(CURDIR)/stm32-flash.ld
 
#LINKER_SCRIPT:=$(CURDIR)/../stm32_flash.ld
flash.sh
Show inline comments
 
new file 100755
 
#!/bin/bash
 
st-flash write therm.bin 0x8000000
0 comments (0 inline, 0 general)