cueOS  2.4
cueOS - Universal Show Control OS for ARM
DMX512_fixture_preset.c
1/***============================================================================================================================
2 * Dependencies inclusion
3 * Necessary dependencies should be declared here. Header file should contain as little dependecies declarations as possible
4 *=============================================================================================================================*/
5
6#include "cueos_config.h"
7#if cueOS_CONFIG_NODETYPE == cueOS_NODETYPE_SLAVE_DMX
8#include <string.h>
9#include <stdlib.h>
10#include "cmsis_os.h"
11#include "DMX512_fixture_preset.h"
12
13
14/***============================================================================================================================
15 * Private functions definitions
16 * These functions are only accessible from within the file's scope
17 *=============================================================================================================================*/
18
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){
31 return 0;
32 }else{
33 for(uint16_t i = 0; i< channel_count; i++){
34 if(channels[i] > fixture->ch_count){ return 0; }
35 }
36 }
37 return 1;
38}
39
40
41/***============================================================================================================================
42 * Public functions definitions
43 * These functions can be accessed outside of the file's scope
44 * @see DMX512_fixture.h for declarations
45 *=============================================================================================================================*/
46
56DMX512_fixture_preset_s DMX512_fixture_preset_new(DMX512_fixture_s *fixture, uint16_t channel_count, uint16_t *channels, uint8_t *values){
57
59
60 if(_DMX512_fixture_preset_check(fixture, channel_count, channels, values)){
61
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));
66
67 memcpy(this.channels, channels, this.ch_count * sizeof(uint16_t));
68 memcpy(this.values, values, this.ch_count * sizeof(uint8_t));
69
71
72 }
73
74 return this;
75
76}
77
85 if(fixture_preset != NULL){
86 vPortFree(fixture_preset->channels);
87 vPortFree(fixture_preset->values);
88 fixture_preset->ch_count = 0;
89 fixture_preset->fixture = NULL;
90 }
91}
92
93#endif
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 structure object.
uint16_t ch_count