Riskable

Results 58 comments of Riskable

The default switch body width/length is 18mm. If you're having trouble fitting things together it's likely that your printer isn't printing dimensionally accurate prints. It's an easy thing to fix:...

FYI: I was looking for a workaround to the inability to control this very thing (tolerances) and came up with this: ```rust // The infrared module is a bit too...

Yes! This is what the `UNIFORM_WALL_THICKNESS` setting is for. If you set it to `false` that'll give you the flat-topped inside that you want 👍 Also, for this specific application...

Free-running mode support would be *fantastic*! Very much looking forward to this feature. For reference, "the plan" is to hook up an analog multiplexer to a single analog pin on...

Just as an FYI: I tried putting something together and it runs without hanging/panicking but it doesn't actually seem to write anything: ```rust pub const BLOCK_SIZE: u32 = 65536; pub...

I've got it working! My problem was that when you use `rp2040-hal::rom_data::flash_range_*()` functions it expects the address space to start at `0x0000_0000` but if you want to read that data...

> Sorry, me again: > > ``` > flash_range_erase(addr, SECTOR_SIZE, BLOCK_SIZE, SECTOR_ERASE); > ``` > > Is that right? I think you're telling ROM there's a special way to erase...