27 lines
460 B
Python
27 lines
460 B
Python
|
|
'''
|
||
|
|
Created on 21.11.2013
|
||
|
|
|
||
|
|
@author: rauchp
|
||
|
|
'''
|
||
|
|
import CANFilter
|
||
|
|
# import ems
|
||
|
|
# import time
|
||
|
|
# from config import Config
|
||
|
|
#
|
||
|
|
# c = Config()
|
||
|
|
# conf = c.readConf()
|
||
|
|
|
||
|
|
# buffer={}
|
||
|
|
# if conf['config_debug']:
|
||
|
|
# print 'starte CAN'
|
||
|
|
can = CANFilter.CANFilter()
|
||
|
|
can.start()
|
||
|
|
# if conf['config_debug']:
|
||
|
|
# print 'starte EMS'
|
||
|
|
# th = ems.ems(buffer)
|
||
|
|
# th.start()
|
||
|
|
# if conf['config_debug']:
|
||
|
|
# print 'alles gestartet'
|
||
|
|
# while True:
|
||
|
|
# print buffer
|
||
|
|
# time.sleep(1)
|