taiko: removed VFD

This commit is contained in:
Dniel97 2024-10-06 21:16:02 +02:00
parent bfa5d0dd6e
commit 8315584dbe
Signed by untrusted user: Dniel97
GPG Key ID: 6180B3C768FB2E08
3 changed files with 0 additions and 9 deletions

View File

@ -45,5 +45,4 @@ void taiko_hook_config_load(
network_config_load(&cfg->network, filename); network_config_load(&cfg->network, filename);
bpreader_config_load(&cfg->reader, filename); bpreader_config_load(&cfg->reader, filename);
usio_config_load(&cfg->usio, filename); usio_config_load(&cfg->usio, filename);
vfd_config_load(&cfg->vfd, filename);
} }

View File

@ -19,7 +19,6 @@ struct taiko_hook_config {
struct taiko_network_config network; struct taiko_network_config network;
struct bpreader_config reader; struct bpreader_config reader;
struct usio_config usio; struct usio_config usio;
struct vfd_config vfd;
}; };
void taiko_dll_config_load( void taiko_dll_config_load(

View File

@ -9,7 +9,6 @@
#include "board/bpreader.h" #include "board/bpreader.h"
#include "board/qr.h" #include "board/qr.h"
#include "board/vfd.h"
#include "amcus/amcus.h" #include "amcus/amcus.h"
@ -62,12 +61,6 @@ static DWORD CALLBACK taiko_pre_startup(void)
hr = qr_hook_init(&taiko_hook_cfg.qr, 5); hr = qr_hook_init(&taiko_hook_cfg.qr, 5);
if (FAILED(hr)) {
ExitProcess(EXIT_FAILURE);
}
hr = vfd_hook_init(&taiko_hook_cfg.vfd, 2);
if (FAILED(hr)) { if (FAILED(hr)) {
ExitProcess(EXIT_FAILURE); ExitProcess(EXIT_FAILURE);
} }