Commit 9f54c8f5 authored by devsaurus's avatar devsaurus
Browse files

enable -std=gnu11 for driver dir with corrected os_printf* decls

parent 0c3fc6cc
...@@ -15,6 +15,7 @@ ifndef PDIR ...@@ -15,6 +15,7 @@ ifndef PDIR
GEN_LIBS = libdriver.a GEN_LIBS = libdriver.a
endif endif
STD_CFLAGS=-std=gnu11 -Wimplicit
############################################################# #############################################################
# Configuration i.e. compile options etc. # Configuration i.e. compile options etc.
......
...@@ -140,4 +140,7 @@ void Cache_Read_Disable(void); ...@@ -140,4 +140,7 @@ void Cache_Read_Disable(void);
void ets_intr_lock(void); void ets_intr_lock(void);
void ets_intr_unlock(void); void ets_intr_unlock(void);
void ets_install_putc1(void *routine);
void uart_div_modify(int no, unsigned int freq);
#endif #endif
...@@ -4,6 +4,9 @@ ...@@ -4,6 +4,9 @@
#include "rom.h" #include "rom.h"
void ets_timer_arm_new (ETSTimer *a, int b, int c, int isMstimer); void ets_timer_arm_new (ETSTimer *a, int b, int c, int isMstimer);
int os_printf(const char *format, ...) __attribute__ ((format (printf, 1, 2)));
int os_printf_plus(const char *format, ...) __attribute__ ((format (printf, 1, 2)));
#include_next "osapi.h" #include_next "osapi.h"
#endif #endif
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment