Search found 6 matches

by lukehoersten
Sun Mar 14, 2021 8:54 pm
Forum: ESP-IDF
Topic: Serial monitor freezing
Replies: 1
Views: 2301

Re: Serial monitor freezing

Problem solved. pin big mask was 32 bit but the field was 64 bit:
https://github.com/espressif/esp-homeki ... b2d4e65084
by lukehoersten
Sun Mar 14, 2021 2:40 pm
Forum: ESP-IDF
Topic: Serial monitor freezing
Replies: 1
Views: 2301

Serial monitor freezing

My serial output or monitor stop working at this point every time I start. The rest of the app continues running fine as a HomeKit project so I can confirm HAP core is still working. I suspect I made a code change that's just doing something to break the serial output but I'm not sure what. I've bee...
by lukehoersten
Mon Mar 08, 2021 11:33 pm
Forum: IDEs for ESP-IDF
Topic: VS Code Path Problem
Replies: 6
Views: 10453

Re: VS Code Path Problem

Got it working. Once I fixed the ESP specific build, I had to regenerate my CMAKE from my Makefile now it all works. Thanks for you help!
by lukehoersten
Mon Mar 08, 2021 2:30 pm
Forum: IDEs for ESP-IDF
Topic: VS Code Path Problem
Replies: 6
Views: 10453

Re: VS Code Path Problem

It's defined in the Makefile:

Code: Select all

HOMEKIT_PATH ?= $(abspath $(IDF_PATH)/../esp-homekit-sdk)
by lukehoersten
Mon Mar 08, 2021 1:30 pm
Forum: IDEs for ESP-IDF
Topic: VS Code Path Problem
Replies: 6
Views: 10453

Re: VS Code Path Problem

The extension's build was broken for me until I followed the fix here: https://github.com/espressif/vscode-esp-idf-extension/issues/339 Now I'm still not able to get the esp-homekit-sdk linked but the build process actually finds the compilers and works. Should this not be enough?: Makefile HOMEKIT_...
by lukehoersten
Mon Mar 08, 2021 1:38 am
Forum: IDEs for ESP-IDF
Topic: VS Code Path Problem
Replies: 6
Views: 10453

VS Code Path Problem

I've had this working with the normal CLI install.sh and export.sh scripts and now am trying to get it working with VS Code with no luck. The following are my settings and the resulting CMake error output. settings.json { "C_Cpp.clang_format_style": "Visual Studio", "editor.formatOnSave": true, "[cp...