sprhawk / python-on-a-chip

Automatically exported from code.google.com/p/python-on-a-chip
Other
0 stars 0 forks source link

Merge ipm improvements from contributors #93

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
There are two contributions to ipm from developers on the maillist.  It's time 
to merge their code into the mainline.

1) March 30, 2010: ax003d posts:

I have a solution for the diamond character:
change ipm.py line 297
self.stdout.write(rv) 
to 
self.stdout.write(rv[:-1])  # get rid of the reply char

2) June 8, 2010: Davide dada Carboni posts an implementation of do_load() to 
load a source file, compile it to image and send it to the target platform.

Original issue reported on code.google.com by dwhall...@gmail.com on 8 Jun 2010 at 8:23

GoogleCodeExporter commented 9 years ago
r495
Merged two changes.  Tested via ipm on desktop target.

Original comment by dwhall...@gmail.com on 8 Jun 2010 at 9:47