Ivan Grokhotkov

Results 405 comments of Ivan Grokhotkov

> Does APB_MAX prevent ESP from automatic lightsleep? Yes, APB_MAX lock should prevent entry into light sleep as well. In light sleep, peripherals and the APB are clock-gated (or even...

@mianowill We've merged the fix for this bug internally, this issue will be closed automatically when the commit is synced to Github. We will backport the fix to release/v5.3 and...

> But I'm still unclear if the pulse counter can actively accumulate pulses whilst the main core is in light sleep (I believe the PCNT still does not use the...

@hayschan does https://github.com/espressif/esp-idf/tree/master/examples/protocols/http_server/restful_server example provide something that you are looking for?

@AdityaHPatwardhan could you please explain this part? > The problem for this being that the naming convention of a component in the component manager is not expected to be constant...

> we cannot have the direct dependency of an esp-idf component on a component from the IDF-component-manager. That's true in general, but sometimes we can make an exception and allow...

@higaski Continuing the discussion at https://github.com/espressif/esp-idf/issues/8365#issuecomment-2003119377, here are some pointers about the flasher stub. The stub source code is available in https://github.com/espressif/esptool/tree/master/flasher_stub. I think you probably don't need to build...

@ppisa thank you for the suggestion. Technically it is possible to cross-compile OpenOCD project (with not a lot of changes) and run it on the esp32 with esp-idf. Given that...

I suspect the issue is that CMake step for open62541 is started without passing the C compiler from the top-level project. Therefore CMake tries to find the compiler. But on...

> Typically you'd write a simple dateTimeCallback function that would include the current time & date information when ever a directory or file is created. littlefs and fatfs ports for...