embedded RTOS class project.

Fork of RTOS_project by Mike Moore

Revision:
0:8e898e1270d6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mmPython/mmProject.txt	Tue Sep 17 19:42:49 2013 +0000
@@ -0,0 +1,30 @@
+#!/usr/bin/python -tt                           # tt: detect mixed space/tab.
+#---copyright-----------------------------------#-------------------------------
+#   licensed for personal and academic use.
+#   commercial use must be approved by the account-holder of
+#   gated.clock@gmail.com
+#=======imports=================================#===============================
+import os                                       # import os  library.
+import sys                                      # import sys library.
+import usb.core                                 # import PyUSB library.
+from   Tkinter import *                         # Tk library.
+import ttk                                      # from Tk library.
+import tkFileDialog                             # from Tk library.
+import pexpect                                  # not needed here.
+import mmUI                                     # specify file.
+from   mmUI    import *                         # specify module.
+#=======function================================#===============================
+#=======main====================================#===============================
+#-------parameters------------------------------#-------------------------------
+#-------locals----------------------------------#-------------------------------
+#-------execution-------------------------------#-------------------------------
+if (1):
+
+        root = Tk()
+        app  = mmUI(root)
+        root.mainloop()
+        sys.exit(0)
+#-----------------------------------------------#-------------------------------
+
+
+