Search found 38 matches

by ujurmsde
Sun Jan 08, 2023 7:03 am
Forum: ESP-IDF
Topic: Esp32 IDF release/5.0 running on ESP32S3 Feather I2C problem
Replies: 9
Views: 4624

Re: Esp32 IDF release/5.0 running on ESP32S3 Feather I2C problem

Do you have a minimal working code or similar which you can post?

In my experience with I2C the pins are important. So please mention the SCL and SDA carefully.!
by ujurmsde
Sat Jan 07, 2023 7:03 am
Forum: ESP-IDF
Topic: Want to port a function which is in STM32 API
Replies: 3
Views: 1679

Want to port a function which is in STM32 API

Hi, I want to find the idf equvivalant of the following functions. NoteSetFn(malloc, free, HAL_Delay, HAL_GetTick); The malloc and free are not an issue. The HAL_delay is the function which which provides minimum delay in the specific API and HAL_GetTick gives the current timestamp. I have done some...
by ujurmsde
Thu Dec 01, 2022 4:07 am
Forum: ESP-MDF
Topic: Want to decide which framework is better choice for image transfer on wireless network
Replies: 3
Views: 50423

Re: Want to decide which framework is better choice for image transfer on wireless network

Range? Not more than 10 meters. But not sure how much the bandwidth Bluetooth can provide to transfer the image. Also not sure is about weather both Bluetooth and wifi can co-exist? if so when? one more open question is about how much power consumption will this have? Can it be battery powered? etc ...
by ujurmsde
Wed Nov 30, 2022 5:15 pm
Forum: ESP-MDF
Topic: Want to decide which framework is better choice for image transfer on wireless network
Replies: 3
Views: 50423

Want to decide which framework is better choice for image transfer on wireless network

I want to create a project where I need to decide which is a better choice for me to transfer images from different esp-eyes to one esp which is at central location. I have seen that there is esp-wifi-mesh, esp-ble-mesh and also there is bluetooth classic. I am confused which will serve batter for m...
by ujurmsde
Tue Nov 29, 2022 4:13 pm
Forum: ESP-IDF
Topic: Error in writing the BLE characteristic data from Linux Bleak library to the nimble stack running on esp32.
Replies: 1
Views: 2127

Re: Error in writing the BLE characteristic data from Linux Bleak library to the nimble stack running on esp32.

In the meantime, I was looking for possibility of this error and think that there is/might be some bug in Nimble stack implementation or in my code writing style. So I wrote similar code with arduino and realized that I must first define the write property and then read property of the characteristi...
by ujurmsde
Wed Oct 12, 2022 7:22 pm
Forum: ESP-IDF
Topic: Error in writing the BLE characteristic data from Linux Bleak library to the nimble stack running on esp32.
Replies: 1
Views: 2127

Error in writing the BLE characteristic data from Linux Bleak library to the nimble stack running on esp32.

I have a code, which basically has three characteristic which has read/write attributes. I am using Linux Bluez along with Bleak python library to send some data from my laptop to the esp32 but there seems to be an error receiving the data. The error is not on the Bleak side as I have analysed the B...
by ujurmsde
Sun Jul 24, 2022 1:33 pm
Forum: Hardware
Topic: Question regarding custom PCB design for power management.
Replies: 2
Views: 1472

Question regarding custom PCB design for power management.

I have a question while I am currently developing own custom ESP32-s3 based design. The question is about how to manage power requirement for the board and external RGB LED strips connected via the board. The thing is that the LED strip may require currents upto five to seven Ampere, while the board...
by ujurmsde
Sun Jul 24, 2022 9:37 am
Forum: Hardware
Topic: ESP32-C3 Serial Bootloader and strapping pins
Replies: 2
Views: 1842

Re: ESP32-C3 Serial Bootloader and strapping pins

Do not know about the GPIO8 but GPIO0 should be used to pull-down on reset to run the serial bootloader. Otherwise it will run the program in the flash..

https://docs.espressif.com/projects/esp ... ction.html

Doesn't your board have boot button?
by ujurmsde
Sat Jul 16, 2022 9:29 am
Forum: ESP-IDF 中文讨论版
Topic: idf.py set-target esp32s3 error
Replies: 2
Views: 2995

Re: idf.py set-target esp32s3 error

Have you installed the toolchains correctly for the esp32s3?
by ujurmsde
Sat Jul 16, 2022 9:25 am
Forum: Report Bugs
Topic: sagmentation fault errors when running esp32 build command
Replies: 1
Views: 2615

sagmentation fault errors when running esp32 build command

The errors related build are common and one of them is segmentation fault. I am wondering why I get these errors often and also why they get solved automatically sometimes on next build after either running idf.py clean/fullclean etc or building other project from the example projects. Do anyone has...