enable -std=gnu11 for driver dir with corrected os_printf* decls
This commit is contained in:
parent
0c3fc6cc78
commit
9f54c8f5d4
|
@ -15,6 +15,7 @@ ifndef PDIR
|
|||
GEN_LIBS = libdriver.a
|
||||
endif
|
||||
|
||||
STD_CFLAGS=-std=gnu11 -Wimplicit
|
||||
|
||||
#############################################################
|
||||
# Configuration i.e. compile options etc.
|
||||
|
|
|
@ -140,4 +140,7 @@ void Cache_Read_Disable(void);
|
|||
void ets_intr_lock(void);
|
||||
void ets_intr_unlock(void);
|
||||
|
||||
void ets_install_putc1(void *routine);
|
||||
void uart_div_modify(int no, unsigned int freq);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -4,6 +4,9 @@
|
|||
#include "rom.h"
|
||||
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"
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue