]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - users/drashna/readme.md
Big overhaul to Drashna keymaps and userspace (#3097)
[qmk_firmware.git] / users / drashna / readme.md
index ddf24b24f7ee67b2a80f581645aa2f8d5802df88..0aa73ece9058b2d0662b74393da3eb310734382d 100644 (file)
@@ -96,7 +96,7 @@ Then you can create this file and add your macro strings to it:
 
 ###### secrets.h
 ```c
-PROGMEM const char secret[][64] = {
+static const char * const secrets[] = {
   "secret1",
   "secret2",
   "secret3",
@@ -116,7 +116,7 @@ In the `<name>.c` file, you will want to add this to the top:
 #else
 // `PROGMEM const char secret[][x]` may work better, but it takes up more space in the firmware
 // And I'm not familiar enough to know which is better or why...
-PROGMEM const char secret[][64] = {
+static const char * const secrets[] = {
   "test1",
   "test2",
   "test3",