From: pito <pi...@vo...> - 2012-07-03 18:02:25
|
So - to summarise my experience with this nice tool under WinXP: 1. I installed python 2.7 long time back (win installer probably) 2. I had to install "pyreadline-1.7.1.win32.exe" in order to get the readline imported, and maybe "pyserial" too.. 3. I replaced /dev/.. to COM6 (my BT module) and speed to 115k def __init__(self, serial_port="COM6", speed=115200): 4. I added (winXP Environment Variables) the "EDITOR" variable with "C:\WinAVR\pn\pn.exe" (my favorite editor :) 5. as my editor needs this in order to open and jump to the ie. line 3 C:\WinAVR\pn\pn.exe --line 3 filename I added to the edit_file (in the script) ... elif exename == "pn.exe": cmd = [self.editor, "--line", str(lineno), filename ] .. 6. double clicking on amforth-term.py icon opens the script and connects to the amforth. P. |