Search found 5 matches

by yaqwsx
Tue Aug 03, 2021 8:17 pm
Forum: ESP-IDF
Topic: How to properly write tests? How to use ttfw_idf?
Replies: 1
Views: 3957

How to properly write tests? How to use ttfw_idf?

Hello,
I noticed that ESP-IDF uses some internal machinery for automatic running and compiling tests provided by a Python package ttfw_idf. Is there documentation for this solution? Is it possible to easily adapt it to our project?
by yaqwsx
Mon Aug 02, 2021 6:06 pm
Forum: ESP-IDF
Topic: Multiple binaries per single ESP-IDF project?
Replies: 4
Views: 4246

Re: Multiple binaries per single ESP-IDF project?

Hi iggrr, thanks for the fast response! I am aware of the cache solution. However, if I am not mistaken, it does not solve the problem of having multiple I think it's too bad that the idf.py and whole CMake build system does not support multiple binaries per project. I think this absence is really p...
by yaqwsx
Sun Aug 01, 2021 6:22 am
Forum: ESP-IDF
Topic: Multiple binaries per single ESP-IDF project?
Replies: 4
Views: 4246

Multiple binaries per single ESP-IDF project?

I am working on a project that is more-less a library. Therefore, I would like to have roughly the following project structure: - components - libraryComponent1 - libraryComponent2 - libraryComponent3 - examples - example1 - example2 - example3 Where examples are complete firmware for ESP32. I would...
by yaqwsx
Tue May 30, 2017 5:43 pm
Forum: ESP-IDF
Topic: Writing tests for a component
Replies: 1
Views: 4714

Writing tests for a component

I am writing a component in C++ and I would like to test it. So according to the documentation, I created a directory test and wrote a simple test there in a .c file. How should I now run the test of my component using unit-test-app? Also, I have noticed there some tests written in the Catch framewo...
by yaqwsx
Sun Feb 26, 2017 9:22 am
Forum: ESP-IDF
Topic: ESP-IDF, multicore & freeRTOS confusion
Replies: 1
Views: 17052

ESP-IDF, multicore & freeRTOS confusion

I am completely new to ESP32 development and I am still looking around. To sum up my assumptions about ESP32 I make, when asking this question: - ESP32 contains two identical cores, one is PRO_CPU and the second is APP_CPU. - ESP-IDF is build on top FreeRTOS. That means that handling of WiFi and oth...