Search found 2240 matches

by chegewara
Fri Dec 18, 2020 9:59 pm
Forum: ESP-IDF
Topic: Mass bluetooth gatt client
Replies: 2
Views: 2171

Re: Mass bluetooth gatt client

There is no option to have more than 7 or 8 simultaneous connections (bluetooth specifications). Maybe, but just maybe in future when esp32 will eventually support BLE 5.x.
by chegewara
Fri Dec 18, 2020 9:55 pm
Forum: General Discussion
Topic: Need help updating from a v4.1-dirty release to the current clean version of 4.1
Replies: 10
Views: 7597

Re: Need help updating from a v4.1-dirty release to the current clean version of 4.1

If its on windows its most likely issue with EOL, which is different on linux/unix and on windows.
by chegewara
Thu Dec 17, 2020 11:58 am
Forum: ESP-IDF
Topic: IDF Version Information
Replies: 4
Views: 4395

Re: IDF Version Information

Like i said, both of you have some issues with git clone/pull. Here is release/v4.1 hello-world example: I (194) boot: Loaded app from partition at offset 0x10000 I (194) boot: Disabling RNG early entropy source... I (195) cpu_start: Pro cpu up. I (199) cpu_start: Application information: I (204) cp...
by chegewara
Thu Dec 17, 2020 1:49 am
Forum: ESP32 Arduino
Topic: Task Priorities - dealing with two cores
Replies: 3
Views: 3869

Re: Task Priorities - dealing with two cores

I dont think it is related to Serial, but if you are using mutexes in your code it may be the case.
by chegewara
Thu Dec 17, 2020 1:46 am
Forum: ESP-IDF
Topic: IDF Version Information
Replies: 4
Views: 4395

Re: IDF Version Information

Looks like both of you may have issue with git pull. As you can see here its log from master branch: I (731) cpu_start: ESP-IDF: v4.3-dev-2136-gb0150615d-dirty and commit: https://github.com/espressif/esp-idf/commit/b0150615dff529662772a60dcb57d5b559f480e2 Also remember you need to update submodules...
by chegewara
Tue Dec 08, 2020 9:20 am
Forum: ESP32 Arduino
Topic: Using arduino-esp32 as a component: 'SOC_GPIO_PIN_COUNT' was not declared in this scope
Replies: 11
Views: 12187

Re: Using arduino-esp32 as a component: 'SOC_GPIO_PIN_COUNT' was not declared in this scope

Please check that you have clean version arduino-esp32. I know it works, because i am using that combination right now. Arduino: On branch idf-release/v4.2 Your branch is up to date with 'origin/idf-release/v4.2'. Changes not staged for commit: (use "git add <file>..." to update what will be committ...
by chegewara
Mon Dec 07, 2020 7:36 pm
Forum: ESP32 Arduino
Topic: Task Priorities - dealing with two cores
Replies: 3
Views: 3869

Re: Task Priorities - dealing with two cores

From your description i think this may be the case:
https://www.freertos.org/FreeRTOS_Suppo ... 44d1j.html
by chegewara
Mon Dec 07, 2020 7:27 pm
Forum: ESP-IDF
Topic: BLE Security Server Passkey Limits
Replies: 2
Views: 2422

Re: BLE Security Server Passkey Limits

Hi,
like you mentioned passkey shall be a 6 digits, so in case the passkey is shorter (like 12345) you need to add 0s followed by pin (012345). It is bluetooth specification. Im not sure about other part specification, when pin is longer, but esp32 can handle only 6 digits long pins.
by chegewara
Sun Dec 06, 2020 5:17 pm
Forum: ESP32 Arduino
Topic: Proper way to change ESP configuration for Arduino
Replies: 4
Views: 7036

Re: Proper way to change ESP configuration for Arduino

Recommended arduino as component is to use:
- arduino v1.0.4 with esp-idf v3.3
- arduino release/v4.2 with esp-idf master (NOT v4.2)

Other arduino branches (except master) are outdated and wont be updated.