diff options
| author | Jenna Fox <a@creativepony.com> | 2012-09-23 22:37:45 +1000 |
|---|---|---|
| committer | Jenna Fox <a@creativepony.com> | 2012-09-23 22:37:45 +1000 |
| commit | 409e6097d172f4027b8e541128ef3e89cbaed027 (patch) | |
| tree | a5602811db452b7f3da009b5f39ef13d8cefdb93 /firmware/upload.rb | |
| parent | 28b65b95cc1f47a6353e6ede5a4dbee6a36a76e3 (diff) | |
| download | micronucleus-409e6097d172f4027b8e541128ef3e89cbaed027.tar.gz micronucleus-409e6097d172f4027b8e541128ef3e89cbaed027.tar.bz2 micronucleus-409e6097d172f4027b8e541128ef3e89cbaed027.zip | |
very close to it working - it uploads some, but the words uploaded are spaced out with 0xFF's between each word :S
Diffstat (limited to 'firmware/upload.rb')
| -rw-r--r-- | firmware/upload.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/upload.rb b/firmware/upload.rb index 7253ef5..c68b02c 100644 --- a/firmware/upload.rb +++ b/firmware/upload.rb @@ -98,7 +98,7 @@ thinklet = thinklets.first puts "First thinklet: #{thinklet.info.inspect}" -test_data = ("---- Hello World! ----" * 10).encode("BINARY") +test_data = ("---- Hello World! ----" * 1).encode("BINARY") puts "Attempting to write '#{test_data}' to first thinklet's program memory" thinklet.program = test_data |
