Danylo Ulianych
Danylo Ulianych
Just adding my five cents to the discussion. If you share the SPI bus with a TFT screen or LoRa, the SD card must be initialized AFTER all other SPI...
Would love to see this PR merged. Also, I'm having trouble with jeanlemotan's master branch: ``` I (817) phy_init: phy_version 4670,719f9f6,Feb 18 2021,17:07:07 I (906) wifi:mode : sta (44:17:93:7e:34:dc) I...
And also, how to use your project without WiFi? I was looking for a solution for fast video recording to an SD card, that's how I came upon this project...
@Ncerzzk thanks for pinpoiting the relevant changes. I'll try to checkout these changes and see if I manage to run jeanlemotan's code with them. > also, if you want to...
> Regarding disabling the wifi, this should be relatively easy to configure. I can add some defines to completely disable all the wifi functionality. That would be great, thanks.
But firstly I'd like to see Ncerzzk's changes he mentioned ``` cam->dma_half_buffer_cnt = 4; cam->dma_node_buffer_size = cam->width * cam->dma_bytes_per_item > 2048 ? 2048 :cam->width * cam->dma_bytes_per_item; cam->dma_half_buffer_size = cam->dma_node_buffer_size *...
Ah I see, so the changes come from Espressif's fork, not this repo. Got it.
@Ncerzzk so I ran your code in https://github.com/Ncerzzk/esp32-camera/tree/for-esp-cam-fpv (take_picture example) and got ``` I (27) boot: ESP-IDF v5.0-159-g75c3a69feb-dirty 2nd stage bootloader I (27) boot: compile time 10:06:38 I (27) boot:...
All right, I did that: ```c #include #include #include #include #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "esp_timer.h" #include "esp_camera.h" #include "bsp.h" #include "sdcard.h" #include "sdcard_record.h" // support IDF 5.x #ifndef portTICK_RATE_MS...
I see, so I misinterpreted the project description: > This project uses a modified esp-camera component running on an AI Thinker board to send low-latency mjpeg video to a Raspberry...