cueOS  2.4
cueOS - Universal Show Control OS for ARM
DMX512_driver.h
1
8#ifndef _DMX512_DRIVER_H_
9#define _DMX512_DRIVER_H_
10
11#include <stdint.h>
12#include <stdlib.h>
13#include "stm32f4xx_hal.h"
14#include "DMX512_defs.h"
15
16#define DMX512_BREAKMAB_BAUDRATE 0x186A0U
17#define DMX512_FRAME_BAUDRATE 0x3D090U
18#define DMX512_BREAKMAB_BYTESIZE 0x00001U
19#define DMX512_FRAME_BYTESIZE 0x00200U
20#define DMX512_BREAKMAB_BYTEDATA 0x00000U
29#define DEFAULT_DMX512_DRIVER {{}, {0}, DMX512_DRIVER_UNINITIALISED}
30
39typedef enum{
40 DMX512_DRIVER_OK, /*< No error*/
41 DMX512_DRIVER_THREAD_ERR, /*< The driver thread crashed*/
42 DMX512_DRIVER_ADDRESS_OUT_OF_BOUNDS /*< A provided address was outside of the unverse's 0-512 addresses interval*/
44
52typedef enum{
53 DMX512_DRIVER_INITIALISED, /*< Driver is initialised*/
54 DMX512_DRIVER_UNINITIALISED /*< Driver is uninitialised*/
56
66typedef struct{
67 UART_HandleTypeDef uart; /*< UART handle*/
68 uint8_t value_buffer[DMX512_FRAME_BYTESIZE - 1]; /*< DMX512 frame channel values buffer*/
69 DMX512_driver_status_e status; /*< Current status of the driver @see DMX512_driver_status_e*/
71
72void DMX512_driver_init(void);
76DMX512_driver_err_e DMX512_driver_set_single(uint16_t address, uint8_t value);
77
78#endif
79
DMX512_driver_err_e DMX512_driver_set_single(uint16_t address, uint8_t value)
Sets a buffer's address to a given value.
DMX512_driver_err_e
QLSF DMX512 driver error constants.
Definition: DMX512_driver.h:39
DMX512_driver_status_e DMX512_driver_get_status(void)
Returns the status of the DMX512 driver.
#define DMX512_FRAME_BYTESIZE
Definition: DMX512_driver.h:19
DMX512_driver_status_e
Status of the DMX512 driver instance.
Definition: DMX512_driver.h:52
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.
Defines a DMX512 driver instance.
Definition: DMX512_driver.h:66