Kayo Phoenix
Kayo Phoenix
@bschwind I added support installed OCCT in #87 using cmake to check conditions and config.
@oleid You can use [esp-partition-table](https://crates.io/crates/esp-partition-table) crate to find desired partition address and length.
Good news! What about GPU and HDMI support? Also I hope Orange Pi 5 Plus will be added soon.
The problem ossurs when I run core as systemd service (also from root of course).
@KKRainbow I added `iproute2` package which provides `ip` command but error still happens. Have we any other implicit dependencies?
I run core using strace and found that it also needs `sh` command to run `ip`. So I added `bash` package to work around it. Now it works fine for...
@imxyy1soope1 It's ok! I successfully removed shell from dependencies and it still works for me. This is my repo: [nixos-addons](https://github.com/katyo/nixos-addons).
Is any progress here?
Currently ESP-IDF implements two-step raw to voltage conversion with curve fitting (at least for ESP32-C3 and ESP32-S3) (see [components/esp_adc/adc_cali_curve_fitting.c](/espressif/esp-idf/blob/7052a14/components/esp_adc/adc_cali_curve_fitting.c)) The curve coefficients hardcoded in source for each attenuation and differs...
This is my attempt: [adc_calibration](/katyo/esp-hal/tree/feature/adc_calibration) (PoC and WiP). It based on @JurajSadel's work. At the moment the curve fitting derived from IDF, no optimizations applied yet. Also needed some usage...