zmk-javelin-steno/src/platform/zmk_connection_shim.cc
afiqzudinhadi 206e5231e1 Initial skeleton: ZMK module structure + Javelin submodule + stub shims
Phase 1 scaffold for porting Javelin steno engine as a ZMK module.
All platform shims are stubs — compiles but no steno processing yet.
2026-06-22 20:49:01 +08:00

10 lines
413 B
C++

#include "hal/connection.h"
#include "hal/ble.h"
#include "hal/usb_status.h"
// Connection::IsConnected and friends are already implemented in
// hal/connection.cc using the weak Ble:: and UsbStatus:: defaults.
// This file exists for future ZMK-specific connection status overrides.
// TODO Phase 2: Optionally override Ble::IsConnected() with
// zmk_ble_active_profile_is_connected() for accurate BLE status.