mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-12-03 17:07:16 +01:00
16 lines
279 B
C
16 lines
279 B
C
|
/*
|
||
|
Serial LED implementation for chuniio
|
||
|
|
||
|
Credits:
|
||
|
somewhatlurker, skogaby
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
#include "chuniio/leddata.h"
|
||
|
|
||
|
HRESULT led_serial_init(wchar_t led_com[12], DWORD baud);
|
||
|
void led_serial_update(struct _chuni_led_data_buf_t* data);
|