Skip to content

Commit

Permalink
Fix build_all
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralim committed May 26, 2024
1 parent 38ffdb0 commit 744ecca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ ifeq ($(build_type), runtime)


# For MHP30 override the runtime to offset to 32k
ifeq ($(model),"MHP30")
ifeq ($(model),MHP30)
VECTOR_TABLE_OFFSET := 0x8000
SRC_LD = stm32f103_32k_runtime.ld
SRC_LD = src/stm32f103_32k_runtime.ld
endif
ifeq ($(model),$(filter $(model), TS100 TS80 TS80P ))
VECTOR_TABLE_OFFSET := 0x4000
Expand Down
4 changes: 3 additions & 1 deletion build_all.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
!# bin/sh
#! bin/sh

set -eux

make clean
make -j build_type=bootloader model=TS100
Expand Down

0 comments on commit 744ecca

Please sign in to comment.