From 249bb32721bd6baa2f301ec057b59e220599d7ea Mon Sep 17 00:00:00 2001 From: cheetah Date: Sun, 28 Feb 2021 18:24:26 +0100 Subject: [PATCH 1/3] Update README.md --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b26b42..320317c 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,14 @@ # pocsag-gateway -This WIP Software aims to provide an Interface for transmitting Messages sent over AMQP via an RFM69 Transceiver. \ No newline at end of file +This WIP Software aims to provide an Interface for transmitting Messages sent over AMQP via an RFM69 Transceiver. + +## Pin Configuration +| RFM pin | Pi pin +| ------- |------- +| DIO0 | 18 (GPIO24) +| MOSI | 19 +| MISO | 21 +| CLK | 23 +| NSS | 24 +| Ground | 25 +| RESET | 29 From b8d7ff2259db905b5d12731bb5641a318b1802a6 Mon Sep 17 00:00:00 2001 From: cheetah Date: Mon, 1 Mar 2021 00:08:36 +0100 Subject: [PATCH 2/3] Update README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 320317c..9ae25fd 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,20 @@ # pocsag-gateway This WIP Software aims to provide an Interface for transmitting Messages sent over AMQP via an RFM69 Transceiver. +## Software Configuration +Configuration works via Environment Variables or a `.env` file. +``` +POCGW_AMQPURL=amqp://guest:guest@10.13.37.37:5672 + +POCGW_TXBAUD=1200 +POCGW_RXBAUD=1200 + +POCGW_TXFREQ=434230000 +POCGW_RXFREQ=434230000 + +POCGW_FREQOFFSET=25 +``` +If TX or RX Frequency are not set or set to 0, the software will not use this mode(only-rx or only-tx). If both are set, then rx is always active until there are pages to tx. ## Pin Configuration | RFM pin | Pi pin From 172ff10ea9e31e36ad91dc633fe8fd7dd5da68d5 Mon Sep 17 00:00:00 2001 From: cheetah Date: Mon, 1 Mar 2021 00:16:09 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 9ae25fd..c9e8dd3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ # pocsag-gateway This WIP Software aims to provide an Interface for transmitting Messages sent over AMQP via an RFM69 Transceiver. + +## Dependencies +- RabbitMQ Server + ## Software Configuration Configuration works via Environment Variables or a `.env` file. ```