Skip to content
This repository was archived by the owner on Jun 5, 2019. It is now read-only.

Commit 95863a9

Browse files
committed
Merge pull request #228 from smaillet-ms/FIX-buildbreak-227
Fix build break
2 parents 8f6e1b4 + d9a0e25 commit 95863a9

File tree

1 file changed

+2
-2
lines changed
  • DeviceCode/Targets/OS/CMSIS_RTOS/DeviceCode/lwip_1_4_1_os/arch

1 file changed

+2
-2
lines changed

DeviceCode/Targets/OS/CMSIS_RTOS/DeviceCode/lwip_1_4_1_os/arch/cc.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,13 @@ typedef intptr_t mem_ptr_t;
7070
#define PACK_STRUCT_END
7171

7272
/* Plaform specific diagnostic output */
73-
extern void hal_printf(const char *format, ...);
73+
extern void debug_printf(const char *format, ...);
7474

7575
#define LWIP_PLATFORM_DIAG(x) do {debug_printf x;} while(0)
7676

7777
#ifndef LWIP_NOASSERT
7878
#define LWIP_PLATFORM_ASSERT(x) \
79-
do {hal_printf("LWIP Assertion \"%s\" failed at line %d in %s\n", \
79+
do {debug_printf("LWIP Assertion \"%s\" failed at line %d in %s\n", \
8080
x, __LINE__, __FILE__); } while(0)
8181
#else
8282
#define LWIP_PLATFORM_ASSERT(x)

0 commit comments

Comments
 (0)