Work in progress OSC Control manager

Support for log, output and source targets. Now needs to be developed for all attributes.
This commit is contained in:
Bruno Herbelin
2021-12-19 01:11:29 +01:00
parent a612154123
commit 3a9c6f56bf
8 changed files with 213 additions and 14 deletions

View File

@@ -191,10 +191,12 @@ struct TimerConfig
struct ControllerConfig
{
int osc_port;
int osc_port_receive;
int osc_port_send;
ControllerConfig() {
osc_port = OSC_DEFAULT_PORT;
osc_port_receive = OSC_PORT_RECV_DEFAULT;
osc_port_send = OSC_PORT_SEND_DEFAULT;
}
};