1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2024-11-14 17:17:36 +01:00
segatools-dniel97/chuniio/config.h

29 lines
649 B
C
Raw Normal View History

2019-11-17 19:11:49 +01:00
#pragma once
#include <stddef.h>
#include <stdint.h>
struct chuni_io_config {
uint8_t vk_test;
uint8_t vk_service;
uint8_t vk_coin;
uint8_t vk_ir_emu;
uint8_t vk_ir[6];
2019-11-17 19:11:49 +01:00
uint8_t vk_cell[32];
// Which ways to output LED information are enabled
2024-05-12 22:02:53 +02:00
bool cab_led_output_pipe;
bool cab_led_output_serial;
2024-05-12 22:02:53 +02:00
bool controller_led_output_pipe;
bool controller_led_output_serial;
// The name of a COM port to output LED data on, in serial mode
wchar_t led_serial_port[12];
int32_t led_serial_baud;
2019-11-17 19:11:49 +01:00
};
void chuni_io_config_load(
struct chuni_io_config *cfg,
const wchar_t *filename);