Skip to content

Commit 46e193f

Browse files
committed
remove constMEM panel from examples, using const panel instead
1 parent 68f0a2f commit 46e193f

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

examples/ESP32/ClickEncoderTFT/ClickEncoderTFT.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ const colorDef<uint16_t> colors[6] MEMMODE = {
130130
#define fontW 6
131131
#define fontH 9
132132

133-
constMEM panel panels[] MEMMODE = {{0, 0, GFX_WIDTH / fontW, GFX_HEIGHT / fontH}}; // Main menu panel
133+
const panel panels[] MEMMODE = {{0, 0, GFX_WIDTH / fontW, GFX_HEIGHT / fontH}}; // Main menu panel
134134
navNode* nodes[sizeof(panels) / sizeof(panel)]; //navNodes to store navigation status
135135
panelsList pList(panels, nodes, sizeof(panels) / sizeof(panel)); //a list of panels and nodes
136136
//idx_t tops[MAX_DEPTH]={0,0}; // store cursor positions for each level

examples/SSD1306Ascii/Button_Navigation/Button_Navigation.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ MENU(mainMenu, "Main menu", doNothing, noEvent, wrapStyle
148148

149149
//describing a menu output device without macros
150150
//define at least one panel for menu output
151-
constMEM panel panels[] MEMMODE = {{0, 0, 128 / fontW, 64 / fontH}};
151+
const panel panels[] MEMMODE = {{0, 0, 128 / fontW, 64 / fontH}};
152152
navNode* nodes[sizeof(panels) / sizeof(panel)]; //navNodes to store navigation status
153153
panelsList pList(panels, nodes, 1); //a list of panels and nodes
154154
idx_t tops[MAX_DEPTH] = {0, 0}; //store cursor positions for each level

examples/SSD1306Ascii/SSD1306Ascii/SSD1306Ascii.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ serialOut outSerial(Serial, serialTops);
155155

156156
//describing a menu output device without macros
157157
//define at least one panel for menu output
158-
constMEM panel panels[] MEMMODE = {{0, 0, 128 / fontW, 64 / fontH}};
158+
const panel panels[] MEMMODE = {{0, 0, 128 / fontW, 64 / fontH}};
159159
navNode* nodes[sizeof(panels) / sizeof(panel)]; //navNodes to store navigation status
160160
panelsList pList(panels, nodes, 1); //a list of panels and nodes
161161
idx_t tops[MAX_DEPTH] = {0, 0}; //store cursor positions for each level

examples/TFT_HX8257/TFT_HX8257/TFT_HX8257.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ serialIn serial(Serial);
153153
idx_t serialTops[MAX_DEPTH]={0};
154154
serialOut outSerial(Serial,serialTops);
155155

156-
constMEM panel panels[] MEMMODE={{0,0,480/fontW,320/fontH}};
156+
const panel panels[] MEMMODE={{0,0,480/fontW,320/fontH}};
157157
navNode* nodes[sizeof(panels)/sizeof(panel)];//navNodes to store navigation status
158158
panelsList pList(panels,nodes,1);//a list of panels and nodes
159159
idx_t gfxTops[MAX_DEPTH]={0};

examples/adafruitGfx/eTFT/TFT_eSPI/ArduinoMenu_LilyGo_TTGO_T-display_demo/ArduinoMenu_LilyGo_TTGO_T-display_demo.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ serialOut outSerial(Serial,serialTops);
250250
#define fontW 12
251251
#define fontH 18
252252

253-
constMEM panel panels[] MEMMODE = {{0, 0, GFX_WIDTH / fontW, GFX_HEIGHT / fontH}};
253+
const panel panels[] MEMMODE = {{0, 0, GFX_WIDTH / fontW, GFX_HEIGHT / fontH}};
254254
navNode* nodes[sizeof(panels) / sizeof(panel)]; //navNodes to store navigation status
255255
panelsList pList(panels, nodes, 1); //a list of panels and nodes
256256
idx_t eSpiTops[MAX_DEPTH]={0};

examples/adafruitGfx/eTFT/TFT_eSPI/TFT_eSPI.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ serialOut outSerial(Serial,serialTops);
136136
#define fontW 6
137137
#define fontH 9
138138

139-
constMEM panel panels[] MEMMODE = {{0, 0, GFX_WIDTH / fontW, GFX_HEIGHT / fontH}};
139+
const panel panels[] MEMMODE = {{0, 0, GFX_WIDTH / fontW, GFX_HEIGHT / fontH}};
140140
navNode* nodes[sizeof(panels) / sizeof(panel)]; //navNodes to store navigation status
141141
panelsList pList(panels, nodes, 1); //a list of panels and nodes
142142
idx_t eSpiTops[MAX_DEPTH]={0};

examples/clickEncoder/clickEncoder/clickEncoder.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ MENU(mainMenu,"Main menu",doNothing,noEvent,wrapStyle
143143

144144
#define MAX_DEPTH 2
145145

146-
/*constMEM panel panels[] MEMMODE={{0,0,16,2}};
146+
/*const panel panels[] MEMMODE={{0,0,16,2}};
147147
navNode* nodes[sizeof(panels)/sizeof(panel)];
148148
panelsList pList(panels,nodes,1);
149149
idx_t tops[MAX_DEPTH];

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ArduinoMenu library
2-
version=4.21.0
2+
version=4.21.1
33
author=Rui Azevedo, [email protected]
44
maintainer=neu-rah, [email protected]
55
sentence=Generic menu/interactivity system

0 commit comments

Comments
 (0)