Search found 4 matches

by solution-ice
Mon Nov 18, 2019 3:18 am
Forum: General Discussion
Topic: Latest ESP-IDF compilation error
Replies: 12
Views: 17547

Re: Latest ESP-IDF compilation error

Hi I have the same errors...

esp-idf/components/bt/controller/bt.c:964:15: error: 'mem_start' may be used uninitialized in this function [-Werror=maybe-uninitialized]
int ret = heap_caps_add_region(start, end);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
by solution-ice
Fri Nov 15, 2019 3:58 am
Forum: ESP-IDF
Topic: gattc_multi_connect with Nimble
Replies: 0
Views: 1868

gattc_multi_connect with Nimble

Hi, is it possible to use the logic of the gattc_multi_connect from Bluedroid and use the Nimble Stack instead ? Trying to implement multi device serial ports over BLE.

Thanks
by solution-ice
Thu Dec 27, 2018 11:55 pm
Forum: ESP-IDF
Topic: /usr/local/include/regex.h:22:10: fatal error: 'boost/cregex.hpp' file not found
Replies: 0
Views: 2214

/usr/local/include/regex.h:22:10: fatal error: 'boost/cregex.hpp' file not found

Hi, I did a Clean in Eclipse and since then... can't compile anymore ! Here is the result (I have removed some personal path info with *******) make cc -c -DCURSES_LOC="<curses.h>" -DKBUILD_NO_NLS -Wno-format-security -DLOCALE -MMD ********/esp/esp-idf/tools/kconfig/zconf.tab.c -o zconf.tab.o In fil...
by solution-ice
Tue May 08, 2018 1:27 am
Forum: General Discussion
Topic: How to know if inside interrupt ?
Replies: 1
Views: 4332

How to know if inside interrupt ?

Hi, I have a library for inter task communication that uses FreeRTOS queues, but I need to know if it was called from inside interrupt to call the right function. Under STM32 I can use this:
if ((SCB->ICSR & SCB_ICSR_VECTACTIVE_Msk) != 0)

Is there something similar under ESP32 ?

Thanks
Frank