Files
Adam Shiervani f332ceefbf feat: add idle host display setting (#1476)
* feat: hide host display while idle

* feat: add idle display setting

* fix: handle host display advertisement errors

* fix: serialize host display advertisement decisions

* fix: suppress transient HDMI startup error

* docs: explain HDMI startup grace period

* fix: avoid redundant EDID reapply on sessions

* fix: reset video playing state on reconnect
2026-05-25 11:52:22 +02:00
..
2025-09-29 14:09:30 +02:00
2025-09-29 14:09:30 +02:00
2025-11-20 16:07:50 +01:00
2025-11-20 16:07:50 +01:00
2025-09-29 14:09:30 +02:00
2026-01-28 09:19:56 +01:00
2026-01-28 09:19:56 +01:00

jetkvm-native

This component (internal/native/) acts as a bridge between Golang and native (C/C++) code. It manages spawning and communicating with a native process via sockets (gRPC and Unix stream).

For performance-critical operations such as video frame, a dedicated Unix socket should be used to avoid the overhead of gRPC and ensure low-latency communication.

Debugging

To enable debug mode, create a file called .native-debug-mode in the /userdata/jetkvm directory.

touch /userdata/jetkvm/.native-debug-mode

This will cause the native process to listen for SIGHUP signal and crash the process.

pgrep native | xargs kill -SIGHUP