Mario Luzeiro
Mario Luzeiro
would be possible to register a callback on timer functions, so I can be notified when there is a change (insert/remove) on the list? reason: this way I can wake-up...
SingleTricesRingCount is protected by TRICE_ENTER_CRITICAL_SECTION but on TriceTransfer function, SingleTricesRingCount--; is not protected. It could happen that the variable is accessed at same time. Should this be guarded too?
``` Errors (ran nothing, 0 tests, 0 ran, 0 checks, 0 ignored, 0 filtered out, 0 ms) Note: test run failed because no tests were run or ignored. Assuming something...
While using externalproject_add, CMakeLists.txt file is forcing some options based on PROJECT_IS_TOP_LEVEL. While building for a target platform (different toolchain) I don't want to build and run those tests or...
Using version 4.0, I'm experience the same issue as #943 I'm trying to build it myself (i.e: without CMake provided by the cpputest project) on the target (ESP32 IDF) I'm...
Currently: ``` string& append(const string& str); string& append(const string& str, size_t subpos, size_t sublen); string& append(const char* s); string& append(const char* s, size_t n); string& append(size_t n, char c); template...
It looks insert does not "repair" the string. should it? or should put on documentation something about it?
I understand the need for lock/unlock of active_list. I understand the not need for protection on timer_array generally, except on: register_timer, unregister_timer and also on clear() functions. These functions could...
to address https://github.com/ETLCPP/etl/issues/952
while using delegate call_if, I got this error: ``` error: cannot convert 'etl::enable_if_t' {aka 'etl::optional'} to 'esp_modem::command_result' in return ``` should it work? if I call the delegate directly it...