Add chocolate-doom filter script. - rfcommd - RFCOMM daemon to run filters on c… | |
git clone git://bitreich.org/rfcommd/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinw… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
LICENSE | |
--- | |
commit 9b77ca90e9cf4ca7cd9521e6756dc2b833cdefce | |
parent c9f69807d4ddec18407493a8065706ae420c00e4 | |
Author: Christoph Lohmann <[email protected]> | |
Date: Sun, 27 Mar 2022 18:42:54 +0200 | |
Add chocolate-doom filter script. | |
Play DOOM over bluetooth serial! | |
Diffstat: | |
A filters/chocolate-doom | 10 ++++++++++ | |
1 file changed, 10 insertions(+), 0 deletions(-) | |
--- | |
diff --git a/filters/chocolate-doom b/filters/chocolate-doom | |
@@ -0,0 +1,10 @@ | |
+#!/bin/sh | |
+# | |
+# Chocolate Doom (and other Doom derivatives) over serial. | |
+# See: | |
+# https://www.chocolate-doom.org/wiki/index.php/Serial_protocol_support | |
+# | |
+ | |
+# TODO: Change localhost:9000 to actual chocolate-doom instance. | |
+socat pty,link=${1},raw,echo=0 tcp:localhost:9000 | |
+ |