diff options
author | Daniel Friesel <derf@finalrewind.org> | 2022-01-16 10:41:59 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2022-01-16 10:41:59 +0100 |
commit | 7205332a95fad57d5f68885a3834319ecd48e457 (patch) | |
tree | efa5285efee9b2e823a1ef25abf5a3f4a351d94c /include/arch/msp430fr5969lp/driver | |
parent | 8b5d14c7dcf045b21083e55444c3cf08e03cdbd8 (diff) |
add DMX driver for MSP430FR5969 and MSP430FR5994 launchpads
Diffstat (limited to 'include/arch/msp430fr5969lp/driver')
-rw-r--r-- | include/arch/msp430fr5969lp/driver/dmx.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/arch/msp430fr5969lp/driver/dmx.h b/include/arch/msp430fr5969lp/driver/dmx.h new file mode 100644 index 0000000..5822a0d --- /dev/null +++ b/include/arch/msp430fr5969lp/driver/dmx.h @@ -0,0 +1,20 @@ +/* + * Copyright 2022 Daniel Friesel + * + * SPDX-License-Identifier: BSD-2-Clause + */ + +class DMX { + private: + DMX(const DMX ©); + + public: + unsigned char frames[16]; + + DMX() {} + + void setup(); + void write(); +}; + +extern DMX dmx; |