Beispiel #1
0
def plotWord(msg, word):
	string = f32_conv.byte2hex(int(word)%256) 	# L
	string += ' '+ f32_conv.byte2hex(int(word)/256)	# H
	print msg+' '+string
	os_w.printStrToFile(msg+' '+string+'\n')
Beispiel #2
0
def rout():
	os_w.printStrToFile('\n')
Beispiel #3
0
def plot(msg, value):
	print msg+" "+str(value)
	ieee, mchip = f32_conv.run(value, pluginList["Full"])
	mchip = printFormatter(mchip)
	os_w.printStrToFile(msg+' '+mchip+'\n')