lolin S3 pro with ILI9341 #3431
Replies: 4 comments 8 replies
-
Is it this one? If so make note of the flash SPI mode: This is QSPI (or QIO) but you are using DSPI (mode:DIO, clock div:1). Try changing this and it might just work. |
Beta Was this translation helpful? Give feedback.
-
Hello sorry it was written in my first message but lost in other lines. |
Beta Was this translation helpful? Give feedback.
-
Thanks to your advice, my tft is working ! I changed the version of the board package from the last one to the 2.0.13. (Don't know if it was necessary). I have one more problem now. It wasn't the case with my lolin d32 pro. I can't have at the same time the sd card and the tft working. I tested my sdcard on a program it's ok, I tested my tft it's ok too. But when I mixed both of them , it can't read something on the sd card and display it. For example : #include <TFT_eSPI.h> // Bibliothèque pour l'écran TFT // SD pin TFT_eSPI tft = TFT_eSPI(); // Initialiser l'écran TFT void setup() { // Initialiser la carte SD // Ouvrir le fichier texte while (file.available()) { file.close(); void loop() { } |
Beta Was this translation helpful? Give feedback.
-
After a few tries, it seems ok with digitalWrite (SD_CS,HIGH)' same.with tft. |
Beta Was this translation helpful? Give feedback.
-
Hello,
After years of using a lolin D32 pro, I decided to switch with a lolin S3 Pro . Unfortunately I can't make my ILI9341 working . Could you help me please. I changed the setup 70B like this :
// Typical board default pins - change to match your board
#define TFT_CS 48 // 10 or 34 (FSPI CS0)
#define TFT_MOSI 11 // 11 or 35 (FSPI D)
#define TFT_SCLK 12 // 12 or 36 (FSPI CLK)
#define TFT_MISO 13 // 13 or 37 (FSPI Q)
#define TFT_DC 47
#define TFT_RST 21
It's not working.
It's always rebooting
ELF file SHA256: 38e5d98b367089f5
Rebooting...
ESP-ROM:esp32s3-20210327
Build:Mar 27 2021
rst:0xc (RTC_SW_CPU_RST),boot:0x8 (SPI_FAST_FLASH_BOOT)
Saved PC:0x403799da
SPIWP:0xee
mode:DIO, clock div:1
load:0x3fce3818,len:0x508
load:0x403c9700,len:0x4
load:0x403c9704,len:0xad0
load:0x403cc700,len:0x29e4
entry 0x403c9880
Guru Meditation Error: Core 1 panic'ed (StoreProhibited). Exception was unhandled.
Core 1 register dump:
PC : 0x4200507b PS : 0x00060430 A0 : 0x82005150 A1 : 0x3fcebce0
A2 : 0x00000010 A3 : 0x00000000 A4 : 0x60004000 A5 : 0x0000000b
A6 : 0x000000ff A7 : 0x00000008 A8 : 0x08000000 A9 : 0x3fcebcb0
A10 : 0x3fc96cd8 A11 : 0x00000001 A12 : 0x02625a00 A13 : 0xffffffff
A14 : 0x00000031 A15 : 0x00000000 SAR : 0x00000015 EXCCAUSE: 0x0000001d
EXCVADDR: 0x00000010 LBEG : 0x420077c4 LEND : 0x4200780b LCOUNT : 0x00000003
My arduino version is 1.8.19 .
My program is working with a simple SD test program .
Maybe I'm using the wrong user setup file ?
Could someone give me his configuration with lolin S3pro and ILI9341 .
Thanks a lot.
Beta Was this translation helpful? Give feedback.
All reactions