SAMD51 LCD support (#15113)

This commit is contained in:
Giuliano Zaro
2019-09-02 12:45:02 +02:00
committed by Scott Lahteine
parent 23bb40d0ea
commit 12c595c61f
5 changed files with 56 additions and 45 deletions

View File

@ -146,3 +146,11 @@ FORCE_INLINE void _delay_ms(const int delay_ms) { delay(delay_ms); }
#pragma GCC diagnostic ignored "-Wunused-function"
int freeMemory(void);
#pragma GCC diagnostic pop
#ifdef __cplusplus
extern "C" {
#endif
char *dtostrf(double __val, signed char __width, unsigned char __prec, char *__s);
#ifdef __cplusplus
}
#endif