You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
376 B
C
20 lines
376 B
C
#include "uart_dmx.h"
|
|
|
|
typedef struct{
|
|
uint16_t tilt;
|
|
uint8_t endless_rot;
|
|
} motor_mapping_T;
|
|
|
|
typedef struct{
|
|
motor_mapping_T channels[12];
|
|
uint8_t automode;
|
|
} fixture_mapping_T;
|
|
|
|
#define AUTOMODE_NO_FUNC_L 0
|
|
#define AUTOMODE_NO_FUNC_H 4
|
|
#define AUTOMODE_GOTO_REF_L 5
|
|
#define AUTOMODE_GOTO_REF_H 9
|
|
#define AUTOMODE_CLASSIC_L 10
|
|
#define AUTOMODE_CLASSIC_H 14
|
|
|