gnumpi / esphome_audio

Custom audio components for ESPHome
Other
20 stars 8 forks source link

Unable to Compile when using adf_pipeline #29

Open stevetheman1031 opened 1 month ago

stevetheman1031 commented 1 month ago

I've run into a bit of a snag with compiling ESPHome when I add the adf_pipeline. Strangely, I can compile just fine when I comment out the adf_pipeline section. I'm a bit puzzled about why I'm encountering this error, especially since I'm not even using the touch_sensor component.

You can find my configuration here: https://pastebin.com/ZPjWaY06

And here's the compilation error I'm encountering: https://pastebin.com/VWbYA4tn

I'd appreciate any insights or assistance you might have on resolving this issue. Thanks in advance for your help!

cowboyrushforth commented 1 month ago

try to add this to your config, under esp32.framework

    sdkconfig_options:
      # need to set a s3 compatible board for the adf-sdk to compile
      # board specific code is not used though
      CONFIG_ESP32_S3_BOX_BOARD: "y"

otherwise it seems to try to include other boards

gnumpi commented 1 month ago

Thanks for pointing at it, I forgot to put this info into the README after rewriting it.