Remix.run Logo
Liftyee 4 days ago

What toolchain do you use to compile Rust for it? I have about had enough of undebuggable random Arduino segfaults.

bombela 4 days ago | parent [-]

The main Rust compiler. https://doc.rust-lang.org/nightly/rustc/platform-support/avr...

stavros a day ago | parent [-]

Do you know of any sort of tutorial for this? I'd love to have a play.

bombela 5 hours ago | parent [-]

I do not, sorry. You can read the datasheet of the chip learn everything about it. You can then search online for some implementation of firmware uploader/programmer like "avrdude". Those chips are very simple, all controlled by toggling bits and values in registers.

stavros 5 hours ago | parent [-]

I'll try that, thanks.