| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef SLAVE_PORTS_QUEUE_H
- #define SLAVE_PORTS_QUEUE_H
- #include <Arduino.h>
- #include "Slave_Ports_Status_QUEUE.h"
- class Slave_Ports_QUEUE
- {
-
- public:
-
- int _queue_id_current ;
- int _queue_count ;
-
- Slave_Ports_Status_QUEUE_T *Slave_Ports_Status_QUEUE_A ;
-
- Slave_Ports_QUEUE();
- ~Slave_Ports_QUEUE();
- int queue__add_A(Slave_Ports_Status_QUEUE_T QUEUE_A);
- int queue__add(int TASK_TYPE_A, long time_seq_id, long time_min_run);
- };
- #endif
|