Search found 2 matches

by TBHKpmy
Sat Jan 27, 2024 2:06 am
Forum: General Discussion
Topic: ESP32s3 LCD_CAM interrupt
Replies: 1
Views: 833

ESP32s3 LCD_CAM interrupt

I am developing ESP32s3 with ArduinoIDE Ver1.8.19. ArduinoIDE ESP32 board library version is 2.0.14 When registering LCD_CAM module interrupts, I use "esp_intr_alloc" to register the interrupt handler function as shown below, but the LCD_CAM module interrupt does not occur even when VSYNC is receive...
by TBHKpmy
Fri Jan 26, 2024 7:27 am
Forum: ESP32 Arduino
Topic: ESP32 S3 video buffer filling
Replies: 7
Views: 5312

Re: ESP32 S3 LCD_CAM interrupt

ArduinoIDE Ver1.8.19でESP32s3の開発をしているのですが LCD_CAMモジュールの割り込みを登録する際に「esp_intr_alloc」を使用して割り込みハンドラー関数を下記のように登録しているのですが、CISからのVSYNCを受信してもLCD_CAMモジュール割り込みが発生しない。 ※LCD_CAMモジュールのレジスタ設定で「LCD_CAM.lc_dma_int_ena.cam_vsync_int_ena = 1;」と設定しているのでLCD_CAMモジュールでCISのVSYNCを受信すると割り込みが発生するようになっている? //◇LCD_CAM_LC_DMA_IN...