summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/interpro/keyboard/hle.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/interpro/keyboard/hle.h')
-rw-r--r--src/devices/bus/interpro/keyboard/hle.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/devices/bus/interpro/keyboard/hle.h b/src/devices/bus/interpro/keyboard/hle.h
index 07f92a7e0d2..356500225c4 100644
--- a/src/devices/bus/interpro/keyboard/hle.h
+++ b/src/devices/bus/interpro/keyboard/hle.h
@@ -45,6 +45,12 @@ protected:
virtual u8 translate(u8 row, u8 column) = 0;
private:
+ static constexpr int START_BIT_COUNT = 1;
+ static constexpr int DATA_BIT_COUNT = 8;
+ static constexpr device_serial_interface::parity_t PARITY = device_serial_interface::PARITY_EVEN;
+ static constexpr device_serial_interface::stop_bits_t STOP_BITS = device_serial_interface::STOP_BITS_1;
+ static constexpr int BAUD = 1'200;
+
enum {
CLICK_TIMER_ID = 30'000
};