6#include "cueos_config.h"
7#if cueOS_CONFIG_NODETYPE == cueOS_NODETYPE_SLAVE_DMX
11#include "DMX512_fixture_preset.h"
29static uint8_t _DMX512_fixture_preset_check(
DMX512_fixture_s *fixture, uint16_t channel_count, uint16_t *channels, uint8_t *values){
30 if(fixture == NULL || channel_count > fixture->
ch_count){
33 for(uint16_t i = 0; i< channel_count; i++){
34 if(channels[i] > fixture->
ch_count){
return 0; }
60 if(_DMX512_fixture_preset_check(fixture, channel_count, channels, values)){
62 this.fixture = fixture;
63 this.ch_count = channel_count;
64 this.channels = pvPortMalloc(this.ch_count *
sizeof(uint16_t));
65 this.values = pvPortMalloc(this.ch_count *
sizeof(uint8_t));
67 memcpy(this.channels, channels, this.ch_count *
sizeof(uint16_t));
68 memcpy(this.values, values, this.ch_count *
sizeof(uint8_t));
85 if(fixture_preset != NULL){
87 vPortFree(fixture_preset->
values);
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.
#define DMX512_FIXTURE_PRESET_DEFAULT
Fixture preset's default values.
void DMX512_fixture_preset_free(DMX512_fixture_preset_s *fixture_preset)
Frees a fixture preset's dynamically allocated ressources and resets its values parameters to default...
@ DMX512_FIXTURE_PRESET_INITIALISED
DMX512 fixture preset structure object.
DMX512_fixture_s * fixture
DMX512 fixture structure object.