Search found 31 matches

by listout
Sat Jan 14, 2023 7:55 am
Forum: Hardware
Topic: ESP32-CAM: what is the maximum capacity of the microSD card ?
Replies: 9
Views: 80681

Re: ESP32-CAM: what is the maximum capacity of the microSD card ?

I know that is like 7 years ago at least. Today I tried with ESP-IDF v5. and after checking the wiring 2 times, it does work correctly with an SPI SD card module and a 16 GB card: I (316) example: Using SPI peripheral I (316) example: Mounting filesystem I (326) gpio: GPIO[10]| InputEn: 0| OutputEn...
by listout
Tue Jun 28, 2022 10:13 am
Forum: ESP-IDF
Topic: Exit provisioning automatically after x minutes/seconds if no device is connected
Replies: 0
Views: 1474

Exit provisioning automatically after x minutes/seconds if no device is connected

I was trying out the WiFi provisioning example from here https://github.com/espressif/esp-idf/tree/v4.4.1/examples/provisioning/wifi_prov_mgr . Things works fine, no complaints. But after the provisioning beings, a not provisioned device waits for a phone to connect indefinitely. I don't want my dev...
by listout
Fri Jun 10, 2022 9:46 am
Forum: ESP-IDF
Topic: How to make BLE client connect to only specific server
Replies: 10
Views: 8608

Re: How to make BLE client connect to only specific server

Still didn't solve my actual problem, now upto three devices can connect and bond to my ble server but I only want server to accept connection from a bonded client or in other word the client should able to form only to the bonded server.
by listout
Fri Jun 10, 2022 7:29 am
Forum: ESP-IDF
Topic: How to make BLE client connect to only specific server
Replies: 10
Views: 8608

Re: How to make BLE client connect to only specific server

@abansal22 I was finally able to form a bond, do you know how to connect to only bonded device. I the thread I mentions said something about a PR but I couldn't find any such PR
by listout
Fri Jun 10, 2022 6:58 am
Forum: ESP-IDF
Topic: How to make BLE client connect to only specific server
Replies: 10
Views: 8608

Re: How to make BLE client connect to only specific server

The specific term is called bonding.. i thing there is the example in the esp-idf folder Wouldn't bonding require some I/O capability. My device doesn't have any I/O. I've tried the bleprph and blecent example from master branch. After each connect when it shows the connection information in bleprp...
by listout
Fri Jun 10, 2022 6:55 am
Forum: ESP-IDF
Topic: How to make BLE client connect to only specific server
Replies: 10
Views: 8608

Re: How to make BLE client connect to only specific server

What is mean by specific server. if the server expose the specific uuid, you can filter out. you can use the OOB method to filter out the desired server, you can use the mac of the device to filter it out. how do you want it? I meant, the server and client boots up and connects for first time. The ...
by listout
Fri Jun 10, 2022 6:45 am
Forum: ESP-IDF
Topic: How to make BLE client connect to only specific server
Replies: 10
Views: 8608

Re: How to make BLE client connect to only specific server

Please can anyone help ? What is mean by specific server. if the server expose the specific uuid, you can filter out. you can use the OOB method to filter out the desired server, you can use the mac of the device to filter it out. how do you want it? I meant, the server and client boots up and conn...
by listout
Fri Jun 10, 2022 5:30 am
Forum: ESP-IDF
Topic: How to make BLE client connect to only specific server
Replies: 10
Views: 8608

Re: How to make BLE client connect to only specific server

Please can anyone help ?
by listout
Thu Jun 09, 2022 11:24 am
Forum: ESP-IDF
Topic: How to make BLE client connect to only specific server
Replies: 10
Views: 8608

How to make BLE client connect to only specific server

I've a BLE application (NimBLE stack), it works as expected. But now I want the client to connect to a specific server and don't connect to anything else. How can I do this? How can I tell the client to connect to a specific server?
by listout
Fri Jun 03, 2022 7:09 am
Forum: ESP-IDF
Topic: Writing to flash filesytem gets slower as the file size grows
Replies: 0
Views: 1000

Writing to flash filesytem gets slower as the file size grows

I'm trying to write logs from IMU to flash file system, for that I'm using LittleFS. I've one task polling from IMU and creating a char buffer (this task is running at 32 Hz), the IMU task then sends the char buffer to the logger task with the help of a queue. Things are running smooth for the first...