-
Notifications
You must be signed in to change notification settings - Fork 100
Conversation
@@ -32,7 +32,7 @@ pub fn main() { | |||
watchdog::init(watchdog::State::Disabled); | |||
|
|||
// Pins for MC HCK (http://www.mchck.org/) | |||
let led1 = pin::Pin::new(pin::Port::PortB, 16, pin::Function::Gpio, Some(zinc::hal::pin::Out)); | |||
let led1 = pin::Pin::new(pin::Port::PortB, 13, pin::Function::Gpio, Some(zinc::hal::pin::Out)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, I'll fix this
This gets zing building cleanly. I will hopefully have a look at the tests tomorrow. |
Looks nice, thanks for your work. I'll keep this open until we get green on travis though. |
Works for me! There's some pretty severe breakage in the way that ASTs are constructed, and my lack of familiarity with the code is making debugging hard. If it's ok with you I'll braindump into this issue and see if anything makes more sense to you? |
Sounds good. |
As an aside, we've been using homu (http://homu.io/) on nix and it has worked out pretty well. https://github.com/nix-rust/nix/blob/master/CONTRIBUTING.md#homu-the-bot-who-merges-all-the-prs. Homu will verify that the resultant merged state passes before merging into master. |
Cool, thanks, I'll take a look at it (it's the next iteration of bors, right?) |
Yes, I'm not sure if it is the next generation or just the generally available version. Either way, yes -- it's basically bors. |
This fixes |
Update platformtree for new rust
stack_exhausted and begin_unwind
Simple `python` could try `python3` on modern installations.
Thanks to @gyscos I was able to build blinky_lpc17xx using rust 1.9-dev. I'm curious to see what travis will make of the tests, but this is progressing. |
Instead of `next_token()`. This avoids the new `Self: Sized` bound. It returns a Result, currently unwrapped.
This reverts commit 7641778.
Even more update for latest rust nightly
#374, already merged, includes most of the fixes present here. |
Yep. Closing this. |
I've started trying to get Zinc working on modern rust.
I'm currently blocked on rust-lang/rust#32269 but this at least massively cuts down on the compile errors.