Pietro Saccardi
Pietro Saccardi
@felixfontein that's indeed the approach we used to work around the limitation. It's a bit delicate, however, because each stack with this env+file requirements needs its script, or a convention...
Hi @svenevs, thanks for getting back on this! I have rebased the branch, and you should be able to push to the fork as well. I'll reply to the individual...
I think this is answered here: https://github.com/tiangolo/sqlmodel/issues/52#issuecomment-1311987732 For future reference, I found this while looking for why `model_validate_json` did not properly validate for a `SQLModel` with `table=True`.
I see; I might try to create a custom view in the future. The elements available in the default templates (like the list view) are quite powerful, it would be...
I just realized I can increase verbosity. The command line passed by `pio run` to `esptool.py` indeed differs: ```bash # with pio run -t upload -vvv ~/.platformio/penv/bin/python \ ~/.platformio/packages/tool-esptoolpy/esptool.py \...
Upon further inspection, the espidf build framework parses the partitions table and sets the environment variables `FLASH_EXTRA_IMAGES` https://github.com/platformio/platform-espressif32/blob/a47ecbfca0654f57004052cd90ce5f97214c40fa/builder/frameworks/espidf.py#L1497 as well as `ESP32_APP_OFFSET` https://github.com/platformio/platform-espressif32/blob/a47ecbfca0654f57004052cd90ce5f97214c40fa/builder/frameworks/espidf.py#L1614 This does not happen when the target...
Thank you @Jason2866 , this might come in handy especially later during development, if we want to release pre-built packaged firmware. For now forking the platform and board info would...
Just to make sure this doesn't go stale, it's very much still a problem for which I posted a workaround. It needs however developers' attention.
It also seems that `esp-idf/components/app_trace/gcov/io_sym.map` is absent from `~/.platformio/packages/framework-espidf/components/app_trace/gcov`. The contents of that file are ``` fopen gcov_rtio_fopen fclose gcov_rtio_fclose fwrite gcov_rtio_fwrite fread gcov_rtio_fread fseek gcov_rtio_fseek ftell gcov_rtio_ftell setbuf gcov_rtio_setbuf...
Also `:not( )` isn't supported. Pynliner fails raising an exception: https://github.com/rennat/pynliner/blob/master/pynliner/soupselect.py#L103. Until pseudo selectors get supported, I suggest Pynliner to ignore them instead of failing: a partial result is better...