micetools/src/micetools/dll/devices/_devices.h

18 lines
380 B
C
Raw Normal View History

2022-10-30 17:33:02 +00:00
#pragma once
#include "../comdevice.h"
#include "../common.h"
#include "smbus.h"
2022-10-30 17:33:02 +00:00
void install_led_bd();
void install_touch_bd();
void install_aime_bd();
2023-03-28 20:08:02 +00:00
void install_servo_15069();
2022-10-30 17:33:02 +00:00
smbus_callback_t smbus_N2_write;
smbus_callback_t smbus_N2_read;
2023-03-13 21:49:07 +00:00
void start_devices();
void register_device(const char* name, FnComDeviceThread* thread);
void install_devices();