This commit is contained in:
cheetah 2021-02-25 01:37:26 +01:00
parent 7fc1f953f5
commit 3a51f952c7

10
rxstream.go Normal file
View file

@ -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
}