| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- typedef struct
- {
- uint8_t CNF1;
- } TASK_TYPE_T;
- */
- #ifndef Slave_Ports_Status_QUEUE
- #define TASK_TYPE_T_NOT_USED_________________ 0x00
- #define TASK_TYPE_T_Slave_Ports_ttl_decrement 0x01
- #define TASK_TYPE_T_request_confirm_Exp_state 0x02
- #define TASK_TYPE_T_request_set_new_Exp_state 0x03
- #define TASK_TYPE_T_Slave_Ports_broadcast____ 0x04
- #define TASK_TYPE_T_Slave_Ports_set_I2C______ 0x05
- #define Slave_Ports_Status_QUEUE
-
- struct Slave_Ports_Status_QUEUE_S {
- int _queue_id ; //current queue task
- int TASK_TYPE_A ;
- long time_seq_id;
- long time_min_run;
- } ;
-
-
- typedef struct Slave_Ports_Status_QUEUE_S Slave_Ports_Status_QUEUE_T;
-
- #endif
|