From df5d9c77f4a75ee74b4bbac68fd21e601f8b0985 Mon Sep 17 00:00:00 2001 From: Daniel Campora Date: Sun, 19 Apr 2015 20:54:43 +0200 Subject: cc3200: Fix bootloader and modpyb after printf overhaul. The bootloader needs string0.c because of memset, memcpy and others, without string0.c it magically links, but calling any of those functions results in a hard fault. In debug mode, modpyb needs printf, and including stdio.h leads to conflicts due to the redefinitions made in the simplelink drivers. --- cc3200/util/std.h | 1 + 1 file changed, 1 insertion(+) (limited to 'cc3200/util') diff --git a/cc3200/util/std.h b/cc3200/util/std.h index 2b23fb63e..a74c90e25 100644 --- a/cc3200/util/std.h +++ b/cc3200/util/std.h @@ -29,6 +29,7 @@ typedef unsigned int size_t; +int printf(const char *fmt, ...); int snprintf(char *str, size_t size, const char *fmt, ...); // Convenience function, defined in main.c. -- cgit v1.2.3