Search found 12 matches

by jc2020
Mon Jan 25, 2021 9:34 pm
Forum: ESP-ADF
Topic: Direct SIP Call Without Server
Replies: 0
Views: 2862

Direct SIP Call Without Server

I'm looking to have two ESP32 devices, which are connected to the same local network, to call each other. I can do this currently with the VOIP example in the ADF but it requires a PBX server to route the calls. My wish is to have the SIP calls happen without the PBX server, from one esp32 directly ...
by jc2020
Sun Jan 03, 2021 5:38 pm
Forum: Hardware
Topic: When sharing SPI bus, MISO data not read correctly (all 0x00s except first byte)
Replies: 1
Views: 2220

Re: When sharing SPI bus, MISO data not read correctly (all 0x00s except first byte)

I think I just found the solution.

The LCD drivers were initializing as half duplex, whereas the ESP32 slave was full duplex.

I init the LCD driver as full duplex and the issue went away.

Out of interest, why did it portray this particular behaviour?
by jc2020
Sun Jan 03, 2021 5:19 pm
Forum: Hardware
Topic: When sharing SPI bus, MISO data not read correctly (all 0x00s except first byte)
Replies: 1
Views: 2220

When sharing SPI bus, MISO data not read correctly (all 0x00s except first byte)

I have an ESP32 master, which is connected to an ESP32 slave, and a LCD (ILI9488 4" Display) slave. The ESP32 master and ESP32 slave communicates correctly. And so does the ESP32 master with the LCD when they are not on the same bus. So they both work fine if they are on separate SPI busses (one use...
by jc2020
Sun Jan 03, 2021 11:14 am
Forum: ESP-IDF
Topic: ESP32 TFT Library using IDF?
Replies: 3
Views: 9140

Re: ESP32 TFT Library using IDF?

Victoria Nope wrote:
Sat Jan 02, 2021 5:26 am
Check the LVGL project for ESP32.
Thank you @Victoria Nope
by jc2020
Fri Jan 01, 2021 8:45 pm
Forum: ESP-IDF
Topic: ESP32 TFT Library using IDF?
Replies: 3
Views: 9140

ESP32 TFT Library using IDF?

What good ESP32 TFT libraries compatible with ESP-IDF are there that are updated regularly? I like loboris' library, but he uses his own modified SPI library and I'm seeing some issues with my other SPI devices and I'm not sure if it's because the two libraries are 'clashing' (I don't yet know the u...
by jc2020
Wed Dec 23, 2020 11:52 am
Forum: General Discussion
Topic: ESP32-CAM acting as SPI slave - External interrupt init error
Replies: 1
Views: 2939

Re: ESP32-CAM acting as SPI slave - External interrupt init error

I found that the issue is something to do with the ISR. The following init before my camera init seems to solve the issue. Not 100% sure why this is, and feels like a hack so if anyone has any info, please comment!

Code: Select all

gpio_install_isr_service(0); 
by jc2020
Tue Dec 22, 2020 2:24 pm
Forum: Hardware
Topic: ESP32 SPI screens greater than 3.5"?
Replies: 2
Views: 3051

Re: ESP32 SPI screens greater than 3.5"?

Thanks @Agree007, I have some 3.5" displays configured already :).

I'm looking to see if anyone is aware of any larger screens.

Thanks for your reply.
by jc2020
Tue Dec 22, 2020 2:22 pm
Forum: General Discussion
Topic: ESP32-CAM acting as SPI slave - External interrupt init error
Replies: 1
Views: 2939

ESP32-CAM acting as SPI slave - External interrupt init error

Hello all, I've been wanting to use an ESP32-CAM as a SPI slave to another ESP32 module. The example SPI slave code on IDF V3.3 works very well, along with the ESP32-CAM demos from Github. However when I join the two firmwares together, the camera initialization fails. When I comment out ret=spi_sla...
by jc2020
Mon Dec 21, 2020 3:15 pm
Forum: Hardware
Topic: ESP32 SPI screens greater than 3.5"?
Replies: 2
Views: 3051

ESP32 SPI screens greater than 3.5"?

Which displays have you guys used or heard of that can interface with the ESP32, ideally via SPI that are of such size?
by jc2020
Mon Dec 07, 2020 11:58 am
Forum: ESP-IDF
Topic: Best way to make use of GPI pins?
Replies: 1
Views: 2207

Best way to make use of GPI pins?

I've read on the forums that MISO pins are good for this purpose.

What downsides are there to using the GPI pins as opposed to the GPIO pins for purely receiving input to the MCU?

Thanks :).