electricimp / reference

Electric Imp Reference Code
MIT License
94 stars 65 forks source link

Tiny bug in impeeduino #18

Closed nseidle closed 10 years ago

nseidle commented 10 years ago

Line 179 of the impeeduino.agent reads:

parse_hex(hex);

This is a nonexistent function and throws an error at runtime. Should be:

parse_hexfile(hex);

Aaron - Thanks for working on this new parser. I pushed a couple larger HEX files and verified with diff. Works like a charm! (once you fix this small error)

ginomiglio commented 10 years ago

Thanks for pointing this out! I noticed this weeks ago and apparently never committed it. Whoops.

blindman2k commented 10 years ago

Thanks for the feedback :)

nseidle commented 10 years ago

Very welcome. I've been using this bootloader for a few days now. It's amazing to be able to bootload an Arduino buried in the rafters 50 feet away from my laptop. Thanks for making this happen.