embedded RTOS class project.

Fork of RTOS_project by Mike Moore

mmPython/mmProject.txt

Committer:
gatedClock
Date:
2013-09-17
Revision:
0:8e898e1270d6

File content as of revision 0:8e898e1270d6:

#!/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)
#-----------------------------------------------#-------------------------------