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.
This commit is contained in:
commit
206e5231e1
14 changed files with 445 additions and 0 deletions
12
include/zmk_javelin_steno/zmk_platform_shim.h
Normal file
12
include/zmk_javelin_steno/zmk_platform_shim.h
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#pragma once
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
void zmk_javelin_steno_init(void);
|
||||
void zmk_javelin_steno_process_key(int steno_key_index, bool is_press);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue