Skip to content

Commit

Permalink
Fix bootloader Makefile bugs
Browse files Browse the repository at this point in the history
- Fix extra / added to LIB_PATH, which made this project unable to rebuild the periphdrivers
- Remove local copies of BSP files (fixes conflicting and missing definitions)
  • Loading branch information
Jake-Carter committed Oct 11, 2023
1 parent 5cc924c commit a3b05e5
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 203 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ endif
ifeq "$(MAXIM_PATH)" ""
LIBS_DIR=../../../Libraries
else
LIBS_DIR=/$(subst \,/,$(subst :,,$(MAXIM_PATH))/Libraries)
LIBS_DIR=$(subst \,/,$(subst :,,$(MAXIM_PATH))/Libraries)
endif

CMSIS_ROOT=$(LIBS_DIR)/CMSIS
Expand All @@ -82,7 +82,6 @@ SRCS += max32666_pmic.c
SRCS += max32666_lcd.c
SRCS += max32666_sdcard.c
SRCS += max32666_spi_dma.c
SRCS += board.c
SRCS += hal_sys.c
SRCS += max32666_loader_int.c
SRCS += max32666_loader.c
Expand Down

This file was deleted.

112 changes: 0 additions & 112 deletions maxrefdes178-AppSwitcher/maxrefdes178_max32666_bootloader/src/board.c

This file was deleted.

0 comments on commit a3b05e5

Please sign in to comment.