| 123456789101112131415161718192021 |
- int LCDtim = 250 ;//the value of delay time
- typedef char LCDarray16_T[16] ;
- typedef int LCD_pos_seq_T ; //reqiested position in LCD
- #define LCD_pos_seq_A_NEXT 0x01
- typedef int LCD_pos_id_T ; //reqiested position id in LCD
-
- struct _DISPLAY_LCD {
- int _queue_id ; //current queue task
- LCD_pos_seq_T LCD_pos_seq_A = LCD_pos_seq_A_NEXT;
- LCD_pos_id_T LCD_pos_id_A;
- LCDarray16_T LCDarray16_A ;
- long time_seq_id;
- long time_min_run;
- } ;
|