forked from Dniel97/segatools
20 lines
327 B
C
20 lines
327 B
C
|
/*
|
||
|
LED output functions
|
||
|
|
||
|
Credits:
|
||
|
somewhatlurker, skogaby
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#include "chuniio/config.h"
|
||
|
|
||
|
extern HANDLE led_init_mutex;
|
||
|
int led_output_init(struct chuni_io_config* const cfg);
|
||
|
void led_output_update(uint8_t board, const byte* rgb);
|