Slave_Ports_QUEUE.h 554 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #ifndef SLAVE_PORTS_QUEUE_H
  2. #define SLAVE_PORTS_QUEUE_H
  3. #include <Arduino.h>
  4. #include "Slave_Ports_Status_QUEUE.h"
  5. class Slave_Ports_QUEUE
  6. {
  7. public:
  8. int _queue_id_current ;
  9. int _queue_count ;
  10. Slave_Ports_Status_QUEUE_T *Slave_Ports_Status_QUEUE_A ;
  11. Slave_Ports_QUEUE();
  12. ~Slave_Ports_QUEUE();
  13. int queue__add_A(Slave_Ports_Status_QUEUE_T QUEUE_A);
  14. int queue__add(int TASK_TYPE_A, long time_seq_id, long time_min_run);
  15. };
  16. #endif