You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Execute menuconfig and configure your Serial flash config and other settings. Included *sdkconfig.defaults* sets some defaults to be used.
202
-
203
-
Navigate to **TFT Display DEMO Configuration** and set **SPIFFS** options.
200
+
Execute `idf.py menuconfig` and configure your Serial flash config and other settings. Included *sdkconfig.defaults* sets some defaults to be used.
204
201
205
-
Select if you want to use **wifi** (recommended) to get the time from **NTP**server and set your WiFi SSID and password.
202
+
Navigate to **Components -> TFT Display** and set **display**options or select a pre-defined display configuration for a kit.
206
203
207
-
`make menuconfig`
204
+
To enable **Wifi** in the demo (recommended - gets time from NTP), select **TFT Display DEMO Configuration** from the top-level menu and select those options.
208
205
209
206
Make and flash the example.
210
207
211
-
`make all && make flash`
208
+
`idf.py build && idf.py -p <PORT> flash monitor`
212
209
213
210
---
214
211
@@ -224,6 +221,12 @@ Make and flash the example.
224
221
225
222
You can also prepare different SFPIFFS **image** and flash it to ESP32. *This feature is only tested on Linux.*
226
223
224
+
If you change the SPIFFS image, review the SPIFFS configuration as well. This would also need to be updated if the partition table is changed.
225
+
226
+
`idf.py menuconfig`
227
+
Navigate to **Components -> TFT SPIFFS** and set **SPIFFS** options.
228
+
229
+
227
230
Files to be included on spiffs are already in **components/spiffs_image/image/** directory. You can add or remove the files you want to include.
0 commit comments