CVS: python MANIFEST,1.2,1.3 ihex2titext.py,1.4,1.5 miniterm.py,1.1,1.2 msp430-bsl.py,1.10,1.11 msp430-dco.py,1.6,1.7 msp430-downloader.py,1.7,1.8 msp430-jtag.py,1.23,1.24 setup.py,1.4,1.5 titext2ihex.py,1.4,1.5

Chris Liechti <[email protected]>
Newsgroups gmane.comp.hardware.texas-instruments.msp430.gcc.cvs
Message-ID <[email protected]>
Update of /cvsroot/mspgcc/python
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24301/python

Modified Files:
	MANIFEST ihex2titext.py miniterm.py msp430-bsl.py 
	msp430-dco.py msp430-downloader.py msp430-jtag.py setup.py 
	titext2ihex.py 
Log Message:
rename msp430 package to mspgcc (resolves naming/import conflicts with msp430.dll)

Index: MANIFEST
===================================================================
RCS file: /cvsroot/mspgcc/python/MANIFEST,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -w -d -r1.2 -r1.3
--- MANIFEST	14 Jul 2004 02:04:15 -0000	1.2
+++ MANIFEST	11 Apr 2006 18:35:23 -0000	1.3
@@ -1,13 +1,13 @@
-msp430/__init__.py
-msp430/bsl.py
-msp430/elf.py
-msp430/jtag.py
-msp430/memory.py
-msp430/util.py
-msp430/HIL.py
-msp430/hilspi.py
-msp430/serial/__init__.py
-msp430/serial/serialjava.py
-msp430/serial/serialposix.py
-msp430/serial/serialutil.py
-msp430/serial/serialwin32.py
+mspgcc/__init__.py
+mspgcc/bsl.py
+mspgcc/elf.py
+mspgcc/jtag.py
+mspgcc/memory.py
+mspgcc/util.py
+mspgcc/HIL.py
+mspgcc/hilspi.py
+mspgcc/serial/__init__.py
+mspgcc/serial/serialjava.py
+mspgcc/serial/serialposix.py
+mspgcc/serial/serialutil.py
+mspgcc/serial/serialwin32.py

Index: ihex2titext.py
===================================================================
RCS file: /cvsroot/mspgcc/python/ihex2titext.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -w -d -r1.4 -r1.5
--- ihex2titext.py	30 Dec 2005 01:50:28 -0000	1.4
+++ ihex2titext.py	11 Apr 2006 18:35:23 -0000	1.5
@@ -10,7 +10,7 @@
 #
 # $Id$
 
-from msp430 import memory
+from mspgcc import memory
 import sys
 
 from optparse import OptionParser

Index: miniterm.py
===================================================================
RCS file: /cvsroot/mspgcc/python/miniterm.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -d -r1.1 -r1.2
--- miniterm.py	7 Apr 2006 22:52:09 -0000	1.1
+++ miniterm.py	11 Apr 2006 18:35:23 -0000	1.2
@@ -7,8 +7,10 @@
 # done), received characters are displayed as is (or escaped trough pythons
 # repr, useful for debug purposes)
 
+# this is an adapted copy of the miniterm example from http://pyserial.sf.net
 
-import sys, os, serial, threading, getopt
+import sys, os, threading, getopt
+from mspgcc import serial
 
 EXITCHARCTER = '\x1d'   #GS/ctrl+]
 

Index: msp430-bsl.py
===================================================================
RCS file: /cvsroot/mspgcc/python/msp430-bsl.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -w -d -r1.10 -r1.11
--- msp430-bsl.py	12 Aug 2005 21:10:44 -0000	1.10
+++ msp430-bsl.py	11 Apr 2006 18:35:23 -0000	1.11
@@ -9,8 +9,8 @@
 # $Id$
 
 import sys
-from msp430.util import curry, hexdump, makeihex
-from msp430 import memory, bsl
+from mspgcc.util import curry, hexdump, makeihex
+from mspgcc import memory, bsl
 
 VERSION = "2.0"
 

Index: msp430-dco.py
===================================================================
RCS file: /cvsroot/mspgcc/python/msp430-dco.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -w -d -r1.6 -r1.7
--- msp430-dco.py	4 Apr 2006 21:58:10 -0000	1.6
+++ msp430-dco.py	11 Apr 2006 18:35:23 -0000	1.7
@@ -11,7 +11,7 @@
 #
 # $Id$
 
-from msp430 import jtag, clock, memory
+from mspgcc import memory, jtag, clock
 import sys
 import struct
 

Index: msp430-downloader.py
===================================================================
RCS file: /cvsroot/mspgcc/python/msp430-downloader.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -w -d -r1.7 -r1.8
--- msp430-downloader.py	28 Dec 2005 19:55:48 -0000	1.7
+++ msp430-downloader.py	11 Apr 2006 18:35:23 -0000	1.8
@@ -12,7 +12,7 @@
 
 import os, sys
 import EasyDialogs
-import msp430.jtag, msp430.memory
+import mspgcc.jtag, mspgcc.memory
 from StringIO import StringIO
 import traceback
 
@@ -57,7 +57,7 @@
     jtagobj.bar = EasyDialogs.ProgressBar('Programming %r...' % filename, 100)
     showError = 0
     try:
-        jtagobj.data = msp430.memory.Memory()   #prepare downloaded data
+        jtagobj.data = mspgcc.memory.Memory()   #prepare downloaded data
         jtagobj.data.loadFile(filename)         #autodetect filetype
         jtagobj.bar.label('Connecting...')
         jtagobj.open(lpt)                       #try to open port

Index: msp430-jtag.py
===================================================================
RCS file: /cvsroot/mspgcc/python/msp430-jtag.py,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -w -d -r1.23 -r1.24
--- msp430-jtag.py	7 Apr 2006 20:01:05 -0000	1.23
+++ msp430-jtag.py	11 Apr 2006 18:35:23 -0000	1.24
@@ -12,8 +12,8 @@
 # $Id$
 
 import sys
-from msp430.util import hexdump, makeihex
-from msp430 import memory, jtag
+from mspgcc import memory, jtag
+from mspgcc.util import hexdump, makeihex
 
 
 VERSION = "2.2"

Index: setup.py
===================================================================
RCS file: /cvsroot/mspgcc/python/setup.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -w -d -r1.4 -r1.5
--- setup.py	30 Dec 2005 03:47:49 -0000	1.4
+++ setup.py	11 Apr 2006 18:35:23 -0000	1.5
@@ -13,13 +13,13 @@
     DistributionMetadata.download_url = None
 
 setup(
-    name="msp430-python-tools",
-    description="MSP430 Python Tools",
+    name="python-mspgcc",
+    description="MSP430 Python tools from the mspgcc toolchain",
     version="1.1",
     author="Chris Liechti",
     author_email="[email protected]",
     url="http://mspgcc.sourceforge.net/",
-    packages=['msp430', 'msp430.serial'],
+    packages=['mspgcc', 'mspgcc.serial'],
     license="Python",
     long_description="Python tools for the MSP430 processor including BSL, JTAG",
     classifiers = [

Index: titext2ihex.py
===================================================================
RCS file: /cvsroot/mspgcc/python/titext2ihex.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -w -d -r1.4 -r1.5
--- titext2ihex.py	30 Dec 2005 01:50:28 -0000	1.4
+++ titext2ihex.py	11 Apr 2006 18:35:23 -0000	1.5
@@ -10,8 +10,8 @@
 #
 # $Id$
 
-from msp430.util import makeihex, _ihexline
-from msp430 import memory
+from mspgcc.util import makeihex, _ihexline
+from mspgcc import memory
 import sys
 
 from optparse import OptionParser



-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.