From 3a51f952c7f505249f52b21c4881c3afc4e0d6df Mon Sep 17 00:00:00 2001 From: cheetah Date: Thu, 25 Feb 2021 01:37:26 +0100 Subject: [PATCH] edit --- rxstream.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 rxstream.go diff --git a/rxstream.go b/rxstream.go new file mode 100644 index 0000000..22088ae --- /dev/null +++ b/rxstream.go @@ -0,0 +1,10 @@ +package rfm69 + +// RXStream is the data structure for receiving data +type RXStream struct { + ByteCounter int + ByteStream chan byte + RSSI chan int + Cancel bool + Process chan bool +}