From acee3dc318a119fd9cdba3b50bfe23744af0f523 Mon Sep 17 00:00:00 2001 From: Hannes Matuschek Date: Tue, 2 Jun 2015 19:11:30 +0200 Subject: [PATCH] Fixed docs. --- src/pocsag.hh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/pocsag.hh b/src/pocsag.hh index 1a48bfb..123280f 100644 --- a/src/pocsag.hh +++ b/src/pocsag.hh @@ -11,14 +11,17 @@ namespace sdr { * * The POCSAG protocol is defined as followig: * - * 1) at least 576 bits of alternating value (1 0 1 0 ...) - * 2) a 32-bit sync word (0x7CD215D8) - * 3) 2x8 data words (each 32 bit) - * 4) If data left to send -> continue with step 2 + * 1. at least 576 bits of alternating value (1 0 1 0 ...) + * 2. a 32-bit sync word (0x7CD215D8) + * 3. 2x8 data words (each 32 bit) + * 4. If data left to send -> continue with step 2 * * Unused data words are send as 0x7A89C197. Each dataword is either a address word (bit 31 = 0) * or message word (bit 31 = 1). * + * In order to process the received message you need to override the @c handleMessages() method + * which gets called once a batch of messages has been received. + * * @ingroup datanodes */ class POCSAG: public Sink {