|
|
@@ -80,6 +80,7 @@
|
|
|
#endif
|
|
|
|
|
|
String message ;
|
|
|
+ String message2 ;
|
|
|
DISPLAY__print(
|
|
|
DISPLAY_A ,
|
|
|
DISPLAY_T_ARDUINO_ATTR_ARRAY_A ,
|
|
|
@@ -92,8 +93,8 @@
|
|
|
);
|
|
|
int i;
|
|
|
for(i=ARDUINO_ARRAY_INDEX_FIRST ; i <= ARDUINO_ARRAY_INDEX_LIMIT_PORTS; i++) {
|
|
|
-
|
|
|
-
|
|
|
+ DISPLAY_array16_T DISPLAY_array16_AA="" ;
|
|
|
+ DISPLAY_array16_T DISPLAY_array16_AB="" ;
|
|
|
|
|
|
if(Slave_Ports_Status_A[i].Port_ID > 0) {
|
|
|
|
|
|
@@ -101,40 +102,40 @@
|
|
|
Serial.print("#68 Port_Dspl[DEBUG] i "); Serial.print(i);
|
|
|
Serial.println("] ");
|
|
|
#endif
|
|
|
- DISPLAY_array16_A="";
|
|
|
- message = "" ;
|
|
|
+ message = "";
|
|
|
message.concat("+P #") ;
|
|
|
message.concat(i);
|
|
|
message.concat(" ID[");
|
|
|
message.concat(Slave_Ports_Status_A[i].Port_ID ) ;
|
|
|
message.concat(" ?");
|
|
|
- message.toCharArray(DISPLAY_array16_A, message.length());
|
|
|
+ message.toCharArray(DISPLAY_array16_AA, message.length());
|
|
|
DISPLAY__print(
|
|
|
DISPLAY_A ,
|
|
|
DISPLAY_T_ARDUINO_ATTR_ARRAY_A ,
|
|
|
DISPLAY_PHYSICAL_CHAR_A,
|
|
|
DISPLAY_pos_seq_A,
|
|
|
- DISPLAY_array16_A,
|
|
|
+ DISPLAY_array16_AA,
|
|
|
DISPLAY_TARGET_A,
|
|
|
time_seq_id_A,
|
|
|
time_min_run_A
|
|
|
);
|
|
|
delay(100);
|
|
|
- message = "" ; DISPLAY_array16_A="";
|
|
|
- message.concat(Slave_Ports_Status_A[i].Exp_state ) ;
|
|
|
- message.concat(" T");
|
|
|
- message.concat(Slave_Ports_Status_A[i].Exp_state_ttl ) ;
|
|
|
- message.concat(" B[");
|
|
|
- message.concat(Slave_Ports_Status_A[i].Broadcast_state ) ;
|
|
|
- message.concat(" ");
|
|
|
- message.toCharArray(DISPLAY_array16_A, message.length());
|
|
|
+ // DISPLAY_array16_AA = 0 ;
|
|
|
+ message2 = "" ; message2.concat(" E:");
|
|
|
+ message2.concat(Slave_Ports_Status_A[i].Exp_state ) ;
|
|
|
+ message2.concat(" T");
|
|
|
+ message2.concat(Slave_Ports_Status_A[i].Exp_state_ttl ) ;
|
|
|
+ message2.concat(" B[");
|
|
|
+ message2.concat(Slave_Ports_Status_A[i].Broadcast_state ) ;
|
|
|
+ message2.concat(" ");
|
|
|
+ message2.toCharArray(DISPLAY_array16_AB, message2.length());
|
|
|
|
|
|
DISPLAY__print(
|
|
|
DISPLAY_A ,
|
|
|
DISPLAY_T_ARDUINO_ATTR_ARRAY_A ,
|
|
|
DISPLAY_PHYSICAL_CHAR_A,
|
|
|
DISPLAY_pos_seq_A,
|
|
|
- DISPLAY_array16_A,
|
|
|
+ DISPLAY_array16_AB,
|
|
|
DISPLAY_TARGET_A,
|
|
|
time_seq_id_A,
|
|
|
time_min_run_A
|