IOCINFRAApp/Db/devBronkhorst.proto
changeset 0 77d8eafe2a07
equal deleted inserted replaced
-1:000000000000 0:77d8eafe2a07
       
     1 Terminator = CR LF;
       
     2 ReplyTimeout = 3000;
       
     3 LockTimeout = 3000;
       
     4 
       
     5 identity{
       
     6 	out ":0780040060006000";
       
     7 	in ":138002006000%26c00";
       
     8 }
       
     9 
       
    10 readChar{
       
    11 	out ":068004\$1\$2\$1\$2";
       
    12 	in ":058002\$1\$2%X";
       
    13 }
       
    14 
       
    15 writeChar{
       
    16 	out ":058002\$1\$2%02X";
       
    17 	@init{readChar;}
       
    18 }
       
    19 
       
    20 #SHOULD readInt also contain 0-padding?
       
    21 readInt{
       
    22 	out ":068004\$1\$2\$1\$2";
       
    23 	in ":068002\$1\$2%X";
       
    24 }
       
    25 
       
    26 writeInt{
       
    27 	out ":068002\$1\$2%04X";
       
    28 	@init{readInt;}
       
    29 }
       
    30 
       
    31 readFloat{
       
    32 	out ":068004\$1\$2\$1\$2";
       
    33 	in ":088002\$1\$2%X";
       
    34 }
       
    35 
       
    36 writeFloat{
       
    37 	out ":088002\$1\$2%08X";
       
    38 	@init{readFloat;}
       
    39 }
       
    40 
       
    41 debug{
       
    42 	out ":068004\$1\$2\$1\$2";
       
    43 	in "%39c";
       
    44 }