aboutsummaryrefslogtreecommitdiffstats
path: root/platforms/progmem.h
diff options
context:
space:
mode:
authorQMK Bot2025-11-30 20:25:13 +0100
committerGitHub2025-11-30 20:25:13 +0100
commit6ed61c65dd66cdbb450a4920a69bae193ec73f15 (patch)
tree2d8cf989fba3622bbde9ea1d2da0f9bfe65edd95 /platforms/progmem.h
parent330a8597f8fb136374285d2b52a978e311b46ede (diff)
[CI] Format code according to conventions (#25827)
Format code according to conventions
Diffstat (limited to 'platforms/progmem.h')
-rw-r--r--platforms/progmem.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/platforms/progmem.h b/platforms/progmem.h
index 6c4ebcaa01..395aa14309 100644
--- a/platforms/progmem.h
+++ b/platforms/progmem.h
@@ -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)