Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion module/base/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ define library_link_rule
$(call show_message,Definiendo regla de enlazar $(LIB_DIR)/$1.a)
PROJECT_LIB += $(LIB_DIR)/$1.a
$(LIB_DIR)/$1.a: $$($2_OBJ)
$$(call show_action,Building $$(call short_path,$$<))
$$(call show_action,Building $$(call short_path,$$@))
-@mkdir -p $$(@D)
$$(QUIET) $$(AR) rcs $$@ $$^
endef
Expand Down
2 changes: 1 addition & 1 deletion module/base/soc/lpc43xx/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
CPU = cortex-m4f

# Flash commandfor OpenOCD download target
FLASH_WRITER_COMMANDS = -c "init" -c "halt 0" -c "flash write_image erase $(TARGET_ELF)" -c "reset run" -c "shutdown"
FLASH_WRITER_COMMANDS = -c "program $(TARGET_ELF) verify reset exit"

# Variable with LPC Open drivers module root foder
LPC_OPEN := external/base/soc/$(SOC)/lpc_open
Expand Down
2 changes: 1 addition & 1 deletion module/base/soc/stm32f1xx/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
CPU = cortex-m3

# Flash commandfor OpenOCD download target
FLASH_WRITER_COMMANDS = -c "init" -c "halt 0" -c "reset halt" -c "stm32f1x unlock 0" -c "reset halt" -c "flash write_image erase $(TARGET_ELF)" -c "reset halt" -c "reset run" -c "shutdown"
FLASH_WRITER_COMMANDS = -c "program $(TARGET_ELF) verify reset exit"

# Variable with MCU drivers module root foder
MCU_FOLDER := external/base/mcu/$(MCU)
Expand Down