_DISPLAY_init.h 490 B

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