6#if cueOS_CONFIG_NODETYPE == cueOS_NODETYPE_SLAVE_DMX
8#include "cueos_config.h"
13#include "DMX512_driver.h"
14#include "DMX512_engine.h"
15#include "leds_driver.h"
16#include "QLSF_manager.h"
25static osThreadId_t DMX512engineThread = NULL;
42static void _DMX512_engine_manage(
void *arg){
70 QLFS_manager_load(
"show.qlsf");
88 osThreadAttr_t attr = {.stack_size = 2048,.priority = (osPriority_t) osPriorityNormal};
90 DMX512engineThread = osThreadNew(_DMX512_engine_manage, NULL, &attr);
98 osThreadTerminate(DMX512engineThread);
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_chaser_s DMX512_chaser_new(uint16_t id, DMX512_chaser_mode_e mode, DMX512_chaser_direction_e direction)
Creates and initialises a new chaser instance.
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_driver_status_e DMX512_driver_get_status(void)
Returns the status of the DMX512 driver.
DMX512_driver_err_e DMX512_driver_start(void)
Starts the DMX512 driver thread.
void DMX512_driver_init(void)
Initialises DMX512 driver periphals.
DMX512_driver_err_e DMX512_driver_stop(void)
Terminates the DMX512 driver thread.
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...
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)
#define DMX512_ENGINE_THREAD_DELAY
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_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_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...
void DMX512_fixture_pool_free(DMX512_fixture_pool_s *fixture_pool)
Frees instance pool.
DMX512_engine_err_e DMX512_fixture_pool_del(DMX512_fixture_pool_s *this, uint16_t id)
Deletes a fixture instance from the pool.
DMX512_fixture_pool_s * DMX512_fixture_pool_new(void)
Creates a new fixture pool instance.
DMX512_engine_err_e DMX512_fixture_pool_add(DMX512_fixture_pool_s *this, DMX512_fixture_s fixture)
Adds a fixture instance into the pool.
DMX512_engine_err_e DMX512_fixture_pool_get(DMX512_fixture_pool_s *this, uint16_t id, DMX512_fixture_s **fixture)
Gets a fixture instance from the pool.
DMX512_fixture_preset_s DMX512_fixture_preset_new(DMX512_fixture_s *fixture, uint16_t channel_count, uint16_t *channels, uint8_t *values)
Creates a new scene fixture preset instance.
DMX512_fixture_s DMX512_fixture_new(uint16_t id, uint16_t addr, uint16_t ch_count)
Creates a new scene fixture instance.
void DMX512_scene_pool_manage(DMX512_scene_pool_s *scene_pool)
Manages all scenes contained within the pool.
void DMX512_scene_pool_free(DMX512_scene_pool_s *scene_pool)
Safely Frees instance pool.
DMX512_engine_err_e DMX512_scene_pool_get(DMX512_scene_pool_s *scene_pool, uint16_t id, DMX512_scene_s **scene)
Gets a scene instance from the pool.
DMX512_engine_err_e DMX512_scene_pool_add(DMX512_scene_pool_s *scene_pool, DMX512_scene_s scene)
Adds a scene instance into the pool.
DMX512_scene_pool_s * DMX512_scene_pool_new(void)
Creates a new scene pool instance.
DMX512_scene_s DMX512_scene_new(uint16_t id, uint16_t fadein_time, uint16_t fadeout_time)
Creates and initialises a new scene instance.
DMX512_engine_err_e DMX512_scene_add_fixture_preset(DMX512_scene_s *scene, DMX512_fixture_preset_s fp)
Adds a fixture preset instance into the scene.
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 preset structure object.
DMX512 fixture structure object.
DMX512 scene pool structure object.
DMX512 scene structure object.