Skip to content
Snippets Groups Projects
Commit 470c2106 authored by Sandeep Mistry's avatar Sandeep Mistry
Browse files

Add snprintf_P stub

parent 7bed7946
No related branches found
No related tags found
No related merge requests found
......@@ -97,6 +97,7 @@ typedef const void* uint_farptr_t;
#define memcmp_PF(s1, s2, n) memcmp((s1), (s2), (n))
#define sprintf_P(s, f, ...) sprintf((s), (f), __VA_ARGS__)
#define snprintf_P(s, f, ...) snprintf((s), (f), __VA_ARGS__)
#define pgm_read_byte(addr) (*(const unsigned char *)(addr))
#define pgm_read_word(addr) (*(const unsigned short *)(addr))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment