_DISPLAY_struct.h 446 B

1234567891011121314151617181920
  1. typedef char LCDarray16_T[16] ;
  2. typedef int LCD_pos_seq_T ; //reqiested position in LCD
  3. #define LCD_pos_seq_A_NEXT 0x01
  4. typedef int LCD_pos_id_T ; //reqiested position id in LCD
  5. struct _DISPLAY_LCD {
  6. int _queue_id ; //current queue task
  7. LCD_pos_seq_T LCD_pos_seq_A = LCD_pos_seq_A_NEXT;
  8. LCD_pos_id_T LCD_pos_id_A;
  9. LCDarray16_T LCDarray16_A ;
  10. long time_seq_id;
  11. long time_min_run;
  12. } ;