Björn Quentin
Björn Quentin
> I see. I don't mind not using embedded-hal::adc until a better implementation is suggested. > > However, the issue still remains that an esp-hal ADC cannot be cloned/copied. So...
My comment was about the fact that when you move the ADC and PINs into a function and don't return them afterwards, they will get discarded. Like in your original...
Ah sorry! Now I understand the context better
That's great! In general, we don't have a lot of requirements - we just have https://github.com/esp-rs/esp-hal/blob/main/CONTRIBUTING.md . Just file a PR and make sure to document what changed in CHANGELOG.md...
We don't have touch sensing support, yet. If someone is looking into implementing it, besides the TRM the ESP-IDF code ( https://github.com/espressif/esp-idf/tree/master/components/driver/touch_sensor ) might be a good starting point.
Turns out at least on ESP32-S3 we can execute code from PSRAM right after initializing PSRAM as we currently do - it's just that it's not writable via ibus (but...
The simplest thing to try I can think of would be: - map PSRAM as we already do, FLASH is still mapped - just memcopy everything from the mapped flash...
Wow - didn't notice there is a `Cache_Flash_To_SPIRAM_Copy` ROM function - nice
There is some effort: https://github.com/blueluna/psila Another alternative would be to use or port https://github.com/niclash/zboss
> We have used the LIS3DH accelerometer for other I2C examples, which each member of our team should have access to. I think also everyone owns a BMP180 and an...