Search found 6 matches

by kammutierspule
Tue Oct 01, 2024 1:18 pm
Forum: ESP-IDF
Topic: mktime exception after update to idf 5.0
Replies: 2
Views: 870

Re: mktime exception after update to idf 5.0

I had a similar issue, I found that OS must be running while to access this functions.
Eg: tasks can't be suspended while using these functions.
by kammutierspule
Sun Sep 29, 2024 10:29 am
Forum: IDEs for ESP-IDF
Topic: VSCode, Linux, Create new project, can't get write permissions
Replies: 1
Views: 256

VSCode, Linux, Create new project, can't get write permissions

I'm using (latest everything) VSCode, IDF extention, on Linux(Mint), I create a project using the wizard, it creates a container, I open the workspace in container: I can't have write access to the files. $ ll total 20 drwxrwxr-x 4 ubuntu ubuntu 4096 Sep 29 10:06 ./ drwxr-xr-x 1 root root 4096 Sep 2...
by kammutierspule
Sat Sep 28, 2024 1:52 pm
Forum: ESP-IDF
Topic: Using Cpputest with ESP-IDF
Replies: 1
Views: 1295

Re: Using Cpputest with ESP-IDF

How did you implemented?

Two years later, still not much info on internet about it..
by kammutierspule
Thu Aug 29, 2024 12:58 pm
Forum: ESP-IDF
Topic: idf_component_register, externalproject_add with IDF?
Replies: 1
Views: 441

idf_component_register, externalproject_add with IDF?

I have a component I'm using idf_component_register and then I use externalproject_add. It all builds, link and runs ok until I start to include ESP32 IDF libraries then I get errors such as fatal error: freertos/FreeRTOS.h: No such file or directory How do I build external components but still usin...
by kammutierspule
Sat Apr 11, 2020 12:56 pm
Forum: ESP-IDF
Topic: timer_start behavior
Replies: 0
Views: 1746

timer_start behavior

timer_start, does it reset the counter from the beginning or it resumes the counting from the previous state?
by kammutierspule
Sat Apr 11, 2020 9:33 am
Forum: ESP-IDF
Topic: Use of IRAM_ATTR and library functions
Replies: 2
Views: 5676

Use of IRAM_ATTR and library functions

If I create a IRAM_ATTR function, static void IRAM_ATTR InputScan_ISR( void *aPtr ) { /// ... int b = gpio_get_level( 0 ); /// ... } will the inside functions be placed also in IRAM_ATTR ? I notice that the library function has its prototype: int gpio_get_level(gpio_num_t gpio_num); So are the libra...