Search found 1701 matches

by BenR
Mon Mar 18, 2024 10:09 am
Forum: Bug Reports
Topic: Macro file sd/sdhc bug
Replies: 8
Views: 226

Re: Macro file sd/sdhc bug

Hello,

Please change the CS pin of the SD component to pin D10 / PORTB.2, this should solve the problem.
CS_Pin.jpg
CS_Pin.jpg (26.7 KiB) Viewed 138 times

Please see my first post for an explaination.
by BenR
Mon Mar 18, 2024 10:01 am
Forum: General
Topic: ESP32 _ESP32_SDMode (4Bit) OpenFile return
Replies: 19
Views: 1059

Re: ESP32 _ESP32_SDMode (4Bit) OpenFile return

Hi Stefan, Right ok that is odd, looks to be something deep within the fputc function which is returning an error when it gets those characters. It writes both bytes in the INT before checking the error return. I can't look at the library itself to see what it's doing because it's precompiled. I've ...
by BenR
Fri Mar 15, 2024 10:36 am
Forum: General
Topic: esp and git 2.44
Replies: 3
Views: 174

Re: esp and git 2.44

Thanks for letting us know and glad you've now got it resolved. Could be a bug in the latest version of Git that will likely get ironed out again in a later version.
by BenR
Fri Mar 15, 2024 10:31 am
Forum: General
Topic: ESP32 _ESP32_SDMode (4Bit) OpenFile return
Replies: 19
Views: 1059

Re: ESP32 _ESP32_SDMode (4Bit) OpenFile return

Excellent glad it's working correctly for you now, I've now added the INT, Long and Float array read/write functions so hopefully that will help.

Please let me know if you have any issues.
by BenR
Fri Mar 15, 2024 10:19 am
Forum: General
Topic: Modbus TCP Slave
Replies: 26
Views: 762

Re: Modbus TCP Slave

Hello, Have you checked that the Wiznet module is configured and working by pinging the IP address 192.168.1.100? If it's not responding then it could be a problem with your pin connections or SPI speed etc. If still having issues then might be worth including a 1 second flasher just to prove that t...
by BenR
Fri Mar 15, 2024 10:09 am
Forum: General
Topic: ESP32 C3 Compiling is not possible
Replies: 3
Views: 144

Re: ESP32 C3 Compiling is not possible

Hopefully resolved for you now via library updates.
by BenR
Thu Mar 14, 2024 4:42 pm
Forum: General
Topic: ESP32 C3 Compiling is not possible
Replies: 3
Views: 144

Re: ESP32 C3 Compiling is not possible

Hi Stefan, Thanks for letting us know, looks like it's the I/O optimisation isn't working for the C3 for whatever reason. e.g. GPIO.out_w1ts = Mask; I'll investigate and see if I can make it work, might be we turn off the optimisation for the C3 and instead use the recommended (but slow) I/O layer.
by BenR
Mon Mar 11, 2024 4:17 pm
Forum: General
Topic: ESP32 _ESP32_SDMode (4Bit) OpenFile return
Replies: 19
Views: 1059

Re: ESP32 _ESP32_SDMode (4Bit) OpenFile return

Ok fingers crossed. I had other things to push and so I've pushed the changes including the create file to the library updates so hopefully it will all work for you correctly now.
by BenR
Mon Mar 11, 2024 2:37 pm
Forum: General
Topic: ESP32 _ESP32_SDMode (4Bit) OpenFile return
Replies: 19
Views: 1059

Re: ESP32 _ESP32_SDMode (4Bit) OpenFile return

Hello Stefan, If you look in here C:\ProgramData\MatrixTSL\FlowcodeV10\CAL\ESP\ESP_CAL_File.c Around line 193 we have this which opens the file in a mode that allows read and append write access. Unfortunatley this also seems to be creating the file if it doesn't already exist. MX_FILE_FP_X[MX_FILE_...
by BenR
Mon Mar 11, 2024 10:13 am
Forum: Bug Reports
Topic: Problems ILI9341 SPI after update
Replies: 6
Views: 237

Re: Problems ILI9341 SPI after update

Hello, Regarding these comments. Before it ran at 40MHz The Highspeed SPI mode working fine with 80 mHz The max clock speed for the ILI9488 from the datasheet is around 16MHz but the display will work at 20MHz and above, 30MHz is pretty good going but it's well over the specification. I think I've a...