Yes I need 38400 because it dumps 131k of data when downloading logs.
here is the menu code. the last line "HOLD (A) while LOGGING returns to this menu" wont display fully if I add any other menu items.
As I sais the serial connection is rock solid with no problems whatsoever. I can download the data, interact with the menu all with no trouble, It just wont let me add any other menu items without partially or fully deleting the lower lines such as the "HOLD (A) while LOGGING returns to this menu"
Thanks
Serout2 SO,6,[" ITCV2.0 Turbine Controller (SW - V1.0) System Voltage is ",Dec SYSVolts," Volts", 10,13]
Serout2 SO,6,[" < ",HEX2 RTCHr,":",HEX2 RTCMin,":",HEX2 RTCSec," ",HEX2 RTCMonth,"/",HEX2 RTCDate,"/",HEX2 RTCYear," Sample time = ",Dec SamTime," Sec >",10,10,13]
If DirtyMem <> 255 Then
Serout2 SO,6,[27,91,53,109," MEMORY Contains DATA!",27,91,48,109,10,10,13] ' flash the text
EndIf
If TurStatus <> 255 Then
Serout2 SO,6,[27,91,53,102," TURBINE IS DE-ACTIVATED!",27,91,48,109,10,10,13] ' flash the text
EndIf
Serout2 SO,6,[ " (1) Turbine Setup Menu (2) Download Memory Banks",13,10]
Serout2 SO,6,[ " (3) Erase Memory Banks (4) Set the sample time",13,10]
Serout2 SO,6,[ " (5) Set the Clock (6) Log Data ("]
If LogData = 1 Then
Serout2 SO,6,[ "ON)",13,10]
Else
Serout2 SO,6,[ "OFF)",13,10,13,10]
EndIf
Serout2 SO,6,[ " (C) CLEAR THE SCREEN",10,13]
Serout2 SO,6,[ "HOLD (A) while LOGGING returns to this menu",13,10]
SerIn2 SI,6,[PCCommand]
If PCCommand = 49 Then TurbineSetup
If PCCommand = 51 Then ClrMem
If PCCommand = 53 Then SetClock
If PCCommand = 52 Then SampleTime
If PCCommand = 67 Or PCCommand = 99 Then Menu
If PCCommand = 54 Then
If LogData = 0 Then LogData = 1:GoTo Menu
If LogData = 1 Then LogData = 0:GoTo Menu
EndIf
If PCCommand = 50 Then
Serout2 SO,6,[ 13,10]
ADDR = 0
Cont = Bank0A
GoTo DumpMem
EndIf
Bookmarks