Search found 6 matches
- Sun Sep 22, 2024 2:13 pm
- Forum: Rust
- Topic: How to blink a led on the new esp_hal crate?
- Replies: 1
- Views: 3347
How to blink a led on the new esp_hal crate?
I bought an esp32-h2 with an RGB led that says RGB@IO8 so I did #[esp_hal_embassy::main] async fn main(_spawner: Spawner) -> ! { let mut peripherals = Peripherals::take(); let system = SystemControl::new(peripherals.SYSTEM); //... let clocks = ClockControl::max(system.clock_control).freeze(); let mu...
- Sun Sep 22, 2024 12:50 pm
- Forum: Rust
- Topic: esp32-h2 unresponsive after first flash with rust sdk
- Replies: 3
- Views: 2459
Re: esp32-h2 unresponsive after first flash with rust sdk
Even if the firmware is not working, you should still be able to access the ROM bootloader (which handles USB communication for flashing). If this doesn't work, it may indicate that the flash process corrupted some important data. it appears briefly as a usb device and then resets itself, every 5 s...
- Sun Sep 22, 2024 12:46 pm
- Forum: Rust
- Topic: esp32-h2 unresponsive after first flash with rust sdk
- Replies: 3
- Views: 2459
Re: esp32-h2 unresponsive after first flash with rust sdk
can the flash process corrupt places other than the code, like the boot process? It happened to both boards...
- Sun Sep 22, 2024 4:27 am
- Forum: Rust
- Topic: esp32-h2 unresponsive after first flash with rust sdk
- Replies: 3
- Views: 2459
esp32-h2 unresponsive after first flash with rust sdk
I tried Rust's development branch for esp32-h2 and after the first flash on this board https://pt.aliexpress.com/item/1005005232242277.html?gatewayAdapt=glo2bra on the esp32-h2 chip, it stops appearing as a usb device on linux. This happened to 2 boards. I tried pressing reset, boot, plugging again,...
- Sun Feb 04, 2024 7:15 pm
- Forum: General Discussion
- Topic: Is it possible to maintain 3 different bluetooth connections?
- Replies: 1
- Views: 2031
Is it possible to maintain 3 different bluetooth connections?
Hello! I have a keyboard that changes bluetooth devices, but it does so slowly, disconnecting from one device and connecting to another, which takes 3 seconds and sometimes doesn't even work. I want to create a ESP32 firmware which receives my keyboard and mouse as bluetooth devices, and then also m...
- Sun Dec 31, 2023 5:31 am
- Forum: Documentation
- Topic: Is the IEEE 802.15.4 stack oficially docummented?
- Replies: 1
- Views: 15874
Is the IEEE 802.15.4 stack oficially docummented?
I found an open source HAL for the IEEE802.15.4 stack in Rust: https://github.com/esp-rs/esp-ieee802154 but I cannot find detailed information about this stack in the datasheet. For example, I cannot find for which thing is each register. Is it available publicly? How were they able to write this st...