6#include "stm32f4xx_hal.h"
9#include "leds_driver.h"
10#include "osc_server.h"
11#include "web_application.h"
13#include "DMX512_engine.h"
15#include "cueos_config.h"
17#include "keys_driver.h"
20osThreadId_t cueos_thread_id = NULL;
22static void test(
void){
29static void _cueos_thread(
void *arg){
38#if cueOS_CONFIG_NODETYPE == cueOS_NODETYPE_MASTER
40 webapp_static_start();
41#elif cueOS_CONFIG_NODETYPE == cueOS_NODETYPE_SLAVE_DMX
44#elif cueOS_CONFIG_NODETYPE == cueOS_NODETYPE_SLAVE_PYRO
47#elif cueOS_CONFIG_NODETYPE == cueOS_NODETYPE_SLAVE_MEDIA
73void cueos_start(
void){
77 osThreadAttr_t attr = {.stack_size = 4096,.priority = (osPriority_t) osPriorityNormal};
78 cueos_thread_id = osThreadNew(_cueos_thread, NULL, &attr);
void DMX512_engine_init(void)
Initialises the DMX512 engine singleton.
void osc_packet_send(osc_media_type_e media_type, osc_control_type_e ctrl_type, uint16_t ctrl_id, uint32_t ctrl_val)
Prepares and send an OSC packet over UDP.
void osc_server_init(void)
Initialises the OSC server instance.
void rest_api_start(void)
Starts API HTTP server on port 8000.
void web_application_start(void)
Starts static HTTP server on port 80. This server is ONLY dedicated to serve compiled HTML static fil...
fs_err_e fs_init(void)
Initialises the file system.
void leds_driver_init(void)
LED Driver initialisation.
void leds_driver_set(led_driver_led_e led, led_driver_led_state_e state)
Assigns a state to a driver's led.
void net_init(net_mode_e mode, void *net_ready_callback)
Initialises network.