aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2024-01-14 22:23:29 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2024-01-14 22:23:29 +0100
commit6db211a70f95c339710ac73ec12d9e7c5664a278 (patch)
treec4cb6aaa866ae9f688f6034375886a14b4fc0737
parent6e5f5636a3d34d3edd5c901c8b67f6444a116ad5 (diff)
downloadcats-radio-node-6db211a70f95c339710ac73ec12d9e7c5664a278.tar.gz
cats-radio-node-6db211a70f95c339710ac73ec12d9e7c5664a278.tar.bz2
cats-radio-node-6db211a70f95c339710ac73ec12d9e7c5664a278.zip
Update README
-rw-r--r--README.md18
1 files changed, 17 insertions, 1 deletions
diff --git a/README.md b/README.md
index 9414e9a..8ce266c 100644
--- a/README.md
+++ b/README.md
@@ -13,8 +13,15 @@ This project contains a web user interface for controlling a
## Current state of the project
Configuration read/write through UI is done.
+RF4463 integration, message decoding and presentation, UI to send messages.
+Tunnel IP packets through Arbitrary whiskers, using TUN.
-Pending: RF4463 integration, message decoding and presentation, igate integration, UI to send messages
+### TODO:
+
+* Nicer UI for presenting incoming packets. For now it just shows the Comment whisker.
+* Live update of incoming packets using WebSocket.
+* A 'chat' page that works better to actually chat with another node.
+* igate integration
## Additional tools
@@ -26,3 +33,12 @@ cats-radio-node receives on 127.0.0.1:9073, and transmits to 127.0.0.1:9074.
The `fake-radio` binary can be used to inject frames for that, and decodes those sent by cats-radio-node.
Build with `cargo build --bin fake-radio`
+
+## Remarks
+
+Careful when installing Rust on a Raspberry Pi with a 64-bit kernel running a 32-bit userland: `rustup` will want
+to install the aarch64 toolchain, but that one doesn't work!
+
+If that happens, be sure to select the `stable-arm-unknown-linux-gnueabihf` toolchain, and set it as default using
+`rustup default`.
+