cueOS  2.4
cueOS - Universal Show Control OS for ARM
DMX512_chaser_pool.h
1
9#ifndef DMX512_CHASER_POOL_H_
10#define DMX512_CHASER_POOL_H_
11
12#include <stdint.h>
13#include "DMX512_chaser.h"
14#include "DMX512_defs.h"
15
16
22typedef struct{
24 uint16_t chaser_count;
26
27
34
35
36#endif
37
DMX512_engine_err_e DMX512_chaser_pool_del(DMX512_chaser_pool_s *chaser_pool, uint16_t id)
Deletes a chaser instance from the pool.
DMX512_engine_err_e DMX512_chaser_pool_add(DMX512_chaser_pool_s *chaser_pool, DMX512_chaser_s chaser)
Adds a chaser instance into the pool.
DMX512_engine_err_e DMX512_chaser_pool_get(DMX512_chaser_pool_s *chaser_pool, uint16_t id, DMX512_chaser_s **chaser)
Gets a chaser instance from the pool.
DMX512_chaser_pool_s * DMX512_chaser_pool_new(void)
Creates a new chaser pool instance.
void DMX512_chaser_pool_free(DMX512_chaser_pool_s *chaser_pool)
Frees instance pool.
void DMX512_chaser_pool_manage(DMX512_chaser_pool_s *chaser_pool)
Manages execution of chaser instances for a whole pool.
DMX512_engine_err_e
DMX512 engine error index constants.
Definition: DMX512_defs.h:24
Defines a DMX512 chaser pool object.
DMX512_chaser_s * chasers
DMX512 chaser structure object.
Definition: DMX512_chaser.h:88