Search found 33 matches

by accacca
Wed Mar 06, 2024 5:40 pm
Forum: ESP-IDF
Topic: VSCode 'Something went wrong while getting the serial port list'
Replies: 3
Views: 356

Re: VSCode 'Something went wrong while getting the serial port list'

for a manual configuration you can try this
add

Code: Select all

"idf.portWin": "COM4"
in .vscode/settings.json

uart.png
uart.png (18.55 KiB) Viewed 281 times
by accacca
Tue Dec 26, 2023 3:47 pm
Forum: General Discussion
Topic: use custom libraries with VScode
Replies: 3
Views: 1314

Re: use custom libraries with VScode

viewtopic.php?f=13&t=37001#p123926 ;-)
by accacca
Tue Dec 26, 2023 3:44 pm
Forum: General Discussion
Topic: use custom libraries with VScode
Replies: 3
Views: 1314

Re: sue custom libraries with VScode

viewtopic.php?f=13&t=37001#p123926 ;-)
by accacca
Tue Dec 26, 2023 3:27 pm
Forum: General Discussion
Topic: use custom libraries with VScode
Replies: 3
Views: 1314

use custom libraries with VScode

viewtopic.php?f=13&t=37001#p123926 ;-)
by accacca
Tue Nov 21, 2023 7:00 pm
Forum: ESP-IDF
Topic: About library import (i'm newbie T.T)
Replies: 1
Views: 501

Re: About library import (i'm newbie T.T)

1.- example_connect In IDF 5.11 esp-idf\examples\common_components\protocol_examples_common\include and esp-idf\examples\common_components\protocol_examples_common\connect.c 2. your sdkconfig file should contain CONFIG_EXAMPLE_WIFI_SSID=" ..." CONFIG_EXAMPLE_WIFI_PASSWORD="..." You can change the va...
by accacca
Sun Nov 19, 2023 10:43 am
Forum: ESP-ADF
Topic: av_stream errors ?
Replies: 0
Views: 12390

av_stream errors ?

I am working with components inside examples\protocols\components\av_stream folder (I am beginner I am study the code...) in file av_stream_hal_audio.c static audio_board_handle_t i2s_device_init(uint32_t sample_rate) { i2s_driver_init(I2S_DEFAULT_PORT, sample_rate, I2S_CHANNELS); //^^^! I2S port de...
by accacca
Fri Nov 17, 2023 4:17 pm
Forum: ESP-ADF
Topic: i2S microphone I need help
Replies: 0
Views: 14374

i2S microphone I need help

I managed to do the first steps with ADF Starting from the esp-rtsp example I installed an rtsp server and I can do video stream on VLC. Now I wanted to add audio stream and I thought it would be easier.... My board has an i2S microphone, at the moment the audio_board_init function defined in my cus...
by accacca
Wed Nov 15, 2023 8:26 pm
Forum: ESP-ADF
Topic: esp rtsp protocol example few problems
Replies: 1
Views: 13408

Re: esp rtsp protocol example few problems

Ok now works.. Please enter IDF-PATH with "cd $IDF_PATH" and apply the IDF patch with "git apply $ADF_PATH/idf_patches/idf_v3.3_freertos.patch" first I looked in the idf patches folder and I realised that v3.3 refers to the ESP-IDF fraework version I am working with IDF4.4.4 and with the correct idf...
by accacca
Wed Nov 15, 2023 2:56 pm
Forum: ESP-ADF
Topic: esp rtsp protocol example few problems
Replies: 1
Views: 13408

esp rtsp protocol example few problems

I would like to use the esp-rtsp example with a board (lilygo s3 camera) I was trying to modify the example to fit my board But I got to a point where the log is telling me. I (13258) ESP_RTSP_SERVER: esp_rtsp ver: 1.1.0 compile date: Aug 31 2023-09:45:42 E (13263) MEDIA_OS: Not found right xTaskCre...
by accacca
Sun Nov 12, 2023 7:51 pm
Forum: ESP-IDF
Topic: Exposed config params
Replies: 1
Views: 442

Re: Exposed config params

Problem that should find a solution I have developed some libraries with IDF 5.1 I thought I could reuse them. Now that I have started a new project with ADF that is instead tied to IDF 4.4.4 I can't use my libraries because I would need a different version of IDF with ADF framework I can't use the ...