forked from mirror/qmk_firmware
[CI] Format code according to conventions (#25827)
Format code according to conventions
This commit is contained in:
@@ -6,13 +6,13 @@
|
||||
# include <string.h>
|
||||
# define PROGMEM
|
||||
# define PSTR(x) x
|
||||
# define PGM_P const char*
|
||||
# define PGM_P const char *
|
||||
# define memcmp_P(s1, s2, n) memcmp(s1, s2, n)
|
||||
# define memcpy_P(dest, src, n) memcpy(dest, src, n)
|
||||
# define pgm_read_byte(address_short) *((uint8_t*)(address_short))
|
||||
# define pgm_read_word(address_short) *((uint16_t*)(address_short))
|
||||
# define pgm_read_dword(address_short) *((uint32_t*)(address_short))
|
||||
# define pgm_read_ptr(address_short) *((void**)(address_short))
|
||||
# define pgm_read_byte(address_short) *((uint8_t *)(address_short))
|
||||
# define pgm_read_word(address_short) *((uint16_t *)(address_short))
|
||||
# define pgm_read_dword(address_short) *((uint32_t *)(address_short))
|
||||
# define pgm_read_ptr(address_short) *((void **)(address_short))
|
||||
# define strcmp_P(s1, s2) strcmp(s1, s2)
|
||||
# define strcpy_P(dest, src) strcpy(dest, src)
|
||||
# define strlen_P(src) strlen(src)
|
||||
|
||||
Reference in New Issue
Block a user