mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-11-27 22:40:48 +01:00
16 lines
286 B
C
16 lines
286 B
C
|
/*
|
||
|
Serial LED implementation for chuniio
|
||
|
|
||
|
Credits:
|
||
|
somewhatlurker, skogaby
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
#include "mu3io/leddata.h"
|
||
|
|
||
|
HRESULT mu3_led_serial_init(wchar_t led_com[12], DWORD baud);
|
||
|
void mu3_led_serial_update(struct _ongeki_led_data_buf_t* data);
|