embedded RTOS class project.
Dependencies: C12832_lcd USBDevice mbed-rtos mbed mmSPI_RTOS watchdog_RTOS
Fork of RTOS_project_fork_01 by
mmPython/mmProject.txt
- Committer:
- gatedClock
- Date:
- 2013-09-18
- Revision:
- 5:4409ff66b434
- Parent:
- 0:8e898e1270d6
File content as of revision 5:4409ff66b434:
#!/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) #-----------------------------------------------#-------------------------------