11#ifndef DMX512_engine_H
12#define DMX512_engine_H
16#include "DMX512_chaser_pool.h"
17#include "DMX512_defs.h"
18#include "DMX512_fixture_pool.h"
19#include "DMX512_scene_pool.h"
25#define DMX512_ENGINE_CONFIG_HEADER_SIZE 0x03U
26#define DMX512_ENGINE_CONFIG_PATCH_DATA_SIZE 0x03U
27#define DMX512_ENGINE_CONFIG_SCENE_HEADER_SIZE 0x02U
28#define DMX512_ENGINE_CONFIG_FIXTURE_PRESET_HEADER_SIZE 0x02U
29#define DMX512_ENGINE_CONFIG_CHASER_HEADER_SIZE 0x04U
30#define DMX512_ENGINE_CONFIG_FILE_EXT ".qlsf"
31#define DMX512_ENGINE_CONFIG_TEMP_FILE_EXT ".tmp"
32#define DMX512_ENGINE_THREAD_DELAY 30
DMX512_chaser_mode_e
Playing mode of a chsaer.
DMX512_chaser_direction_e
Playing direction of a chaser.
DMX512_engine_err_e
DMX512 engine error index constants.
DMX512_engine_err_e DMX512_engine_scene_add_preset(uint16_t scene_id, uint16_t fixture_id, uint16_t channel_count, uint16_t *channels, uint8_t *values)
Wrapper for "DMX512_scene_pool_add" function. Provides context to the specified function using DMX512...
DMX512_engine_config_fixture_preset_byte_indexes_e
QLSF fixture preset chunk byte indexes.
DMX512_engine_config_patch_chunk_byte_indexes_e
QLSF patch chunk byte indexes.
void DMX512_engine_start(void)
Starts the DMX512 driver and launches the DMX512 engine management thread.
DMX512_engine_err_e DMX512_engine_scene_get(uint16_t scene_id, DMX512_scene_s **scene)
Wrapper for "DMX512_scene_pool_get" function. Provides context to the specified function using DMX512...
DMX512_engine_err_e DMX512_engine_patch_add(uint16_t fixture_id, uint16_t address, uint16_t ch_count)
Wrapper for "DMX512_fixture_pool_add" function. Provides context to the specified function using DMX5...
DMX512_engine_err_e DMX512_engine_chaser_get(uint16_t chaser_id, DMX512_chaser_s **chaser)
Wrapper for "DMX512_chaser_pool_get" function. Provides context to the specified function using DMX51...
DMX512_engine_err_e DMX512_engine_patch_get(uint16_t fixture_id, DMX512_fixture_s **fixture)
Wrapper for "DMX512_fixture_pool_get" function. Provides context to the specified function using DMX5...
void DMX512_engine_reset(void)
DMX512_engine_err_e DMX512_engine_scene_add(uint16_t scene_id, uint16_t fadein_time, uint16_t fadeout_time)
Wrapper for "DMX512_scene_pool_add" function. Provides context to the specified function using DMX512...
DMX512_engine_err_e DMX512_engine_chaser_add(uint16_t chaser_id, DMX512_chaser_mode_e mode, DMX512_chaser_direction_e direction)
Wrapper for "DMX512_chaser_pool_add" function. Provides context to the specified function using DMX51...
DMX512_engine_config_chaser_step_byte_indexes_e
QLSF chaser step chunk byte indexes.
DMX512_engine_config_chaser_byte_indexes_e
QLSF chaser chunk byte indexes.
DMX512_fixture_pool_s * DMX512_engine_patch_get_all(void)
Returns the current engine fixture patch.
DMX512_engine_err_e DMX512_engine_scene_delete(uint16_t scene_id)
Wrapper for "DMX512_scene_pool_del" function. Provides context to the specified function using DMX512...
void DMX512_engine_init(void)
Initialises the DMX512 engine singleton.
DMX512_scene_pool_s * DMX512_engine_scene_get_all(void)
Returns the current engine scenes.
DMX512_chaser_pool_s * DMX512_engine_chaser_get_all(void)
Returns the current engine chasers.
void DMX512_engine_stop(void)
Stops the DMX512 driver and terminates the DMX512 engine management thread.
DMX512_engine_config_header_byte_indexes_e
QLSF header byte indexes.
DMX512_engine_config_scene_byte_indexes_e
QLSF scene chunk byte indexes.
DMX512_engine_err_e DMX512_engine_patch_delete(uint16_t fixture_id)
Wrapper for "DMX512_fixture_pool_del" function. Provides context to the specified function using DMX5...
DMX512_engine_err_e DMX512_engine_chaser_delete(uint16_t chaser_id)
Wrapper for "DMX512_chaser_pool_del" function. Provides context to the specified function using DMX51...
@ DMX512_ENGINE_CONFIG_FIXTURE_PRESET_CHANNEL_CNT_INDEX
@ DMX512_ENGINE_CONFIG_FIXTURE_PRESET_ID_INDEX
@ DMX512_ENGINE_CONFIG_PATCH_CHUNK_ADDR_INDEX
@ DMX512_ENGINE_CONFIG_PATCH_CHUNK_ID_INDEX
@ DMX512_ENGINE_CONFIG_PATCH_CHUNK_CHN_INDEX
@ DMX512_ENGINE_CONFIG_STEP_FADEIN_INDEX
@ DMX512_ENGINE_CONFIG_STEP_ID_INDEX
@ DMX512_ENGINE_CONFIG_STEP_HOLD_INDEX
@ DMX512_ENGINE_CONFIG_STEP_FADEOUT_INDEX
@ DMX512_ENGINE_CONFIG_CHASER_STEP_COUNT_INDEX
@ DMX512_ENGINE_CONFIG_CHASER_ID_INDEX
@ DMX512_ENGINE_CONFIG_CHASER_DIR_MODE_INDEX
@ DMX512_ENGINE_CONFIG_CHASER_RUN_MODE_INDEX
@ DMX512_ENGINE_CONFIG_HEADER_SCENE_CNT_INDEX
@ DMX512_ENGINE_CONFIG_HEADER_EFFEX_CNT_INDEX
@ DMX512_ENGINE_CONFIG_HEADER_CHASE_CNT_INDEX
@ DMX512_ENGINE_CONFIG_HEADER_PATCH_CNT_INDEX
@ DMX512_ENGINE_CONFIG_SCENE_ID_INDEX
@ DMX512_ENGINE_CONFIG_SCENE_FIXTURE_PRESET_CNT_INDEX
Defines a DMX512 chaser pool object.
DMX512 chaser structure object.
Defines a DMX512 engine instance.
DMX512_chaser_pool_s * chasers
DMX512_fixture_pool_s * fixtures
DMX512_scene_pool_s * scenes
DMX512 fixture pool structure object.
DMX512 fixture structure object.
DMX512 scene pool structure object.
DMX512 scene structure object.