Rahix
Rahix
Hey, thanks for the quick response! My bad for not describing the issue further ... I am currently recompiling the compiler, I have a suspicion that I used a wrong...
First of all: Thank you all so much for your work on the compiler! After running out of both RAM and harddrive space, I was finally able to compile the...
Hi @jhwgh1968! Well, I am currently planning on rewriting my crates after a long talk with the guy behind [tinygo](https://github.com/aykevl/tinygo). We plan to unify the different layers in a way...
So, funny thing @dylanmckay: I was thinking about asking if we should move my crates to avr-rust but was too afraid to ask so far as there is still so...
> Anyone got any good AVR example programs (blink, serial, etc) that use embedded-hal? I've got you covered :) - [Simple blink](https://github.com/Rahix/avr-hal/blob/master/boards/arduino-leonardo/examples/leonardo-blink.rs) - [Serial communication](https://github.com/Rahix/avr-hal/blob/master/boards/arduino-leonardo/examples/leonardo-serial.rs) - [Custom panic handler (using...
> Offtopic: does anyone have embedded-hal examples for analog IO for posting on #14? Sadly we miss an implementation for analog reads as well for now. `embedded-hal` has [traits](https://docs.rs/embedded-hal/0.2.3/embedded_hal/adc/index.html) for...
@dylanmckay: `avr-hal` is still quite young, compared to `ruduino`. In fact, the current incarnation was started about one month back. We are a few guys working more or less actively...
I have reenabled the panic handler (without formatting) on my fork: [panicking.rs](https://github.com/Rahix/libcore-avr/blob/rust-26015da0/src/panicking.rs) This allows me to write a panic handler in my crate. The only issue is that somewhere an...
Hi, can you run a quick test whether other registers behave differently? I have a feeling this might be an issue on compiler side...
Hm, do you intend to write unit tests that run on your host system (= the development machine) or on the target system (the AVR microcontroller)?