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
5 changes: 5 additions & 0 deletions test-app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,11 @@ ifeq ($(DEBUG_UART),1)
APP_NEEDS_STRING:=1
endif

ifeq ($(ARCH),AURIX_TC3)
# AURIX RAM_CODE HAL flash drivers need wolfBoot memcpy
APP_NEEDS_STRING:=1
endif

ifeq ($(APP_NEEDS_STRING),1)
APP_OBJS+=../src/string.o
endif
Expand Down
4 changes: 4 additions & 0 deletions test-app/app_aurix_tc3xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ void tc3tc_main(void)
/* disable external WATCHDOG on the board */
bsp_board_wdg_Disable();

#ifdef DEBUG_UART
uart_init();
#endif
wolfBoot_printf("TC3xx Test Application\n");
wolfBoot_printf("Version: %d\n", wolfBoot_current_firmware_version());

Expand Down Expand Up @@ -122,7 +124,9 @@ void tc3arm_main(void)
/* disable external WATCHDOG on the board */
bsp_board_wdg_Disable();

#ifdef DEBUG_UART
uart_init();
#endif
wolfBoot_printf("TC3xx HSM Test Application\n");
wolfBoot_printf("Version: %d\n", wolfBoot_current_firmware_version());

Expand Down
Loading