From 6380915e6e8d98e2c933ea6eb8df02fb1b123b97 Mon Sep 17 00:00:00 2001 From: Duncan Wilkie Date: Tue, 18 Jul 2023 17:00:44 -0500 Subject: Somewhat finalized base MIDI; got the minimal MIDI-CI done. --- controller/inc/base_midi.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'controller/inc') diff --git a/controller/inc/base_midi.h b/controller/inc/base_midi.h index e566a6f..8320803 100644 --- a/controller/inc/base_midi.h +++ b/controller/inc/base_midi.h @@ -16,6 +16,12 @@ // Otherwise sends Note On velocity 0 (so as to exploit running status). #undef EXPORT_CONTROLLERS // If defined, export constants useful for controller messages. +// Device info. Modify to suit your use-case. +#define DEVICE_MANUFACTURER 0x7d +#define DEVICE_FAMILY 0x00'00 +#define DEVICE_MODEL_NUMBER 0x00'00 +#define SOFTWARE_REVISION 0x00'00'00'00 + // Consumers must specify typedef struct { void (*uart_write)(uint8_t); // Blocking, single-byte UART transmit function. -- cgit v1.2.3