Fixed comments.

master
Hannes Matuschek 11 years ago
parent 71e3d29d69
commit 0b7bc758d5

@ -84,9 +84,13 @@ protected:
/** Delay line index. */ /** Delay line index. */
size_t _dl_idx; size_t _dl_idx;
/** Ring buffer of the last @c _corrLen symbols. */
Buffer<int16_t> _symbols; Buffer<int16_t> _symbols;
/** Insertion index. */
size_t _symbolIdx; size_t _symbolIdx;
/** Sum of the current @c _corrLen symbols. */
int32_t _symSum; int32_t _symSum;
/** Sum of the last @c _corrLen symbols. */
int32_t _lastSymSum; int32_t _lastSymSum;
/** Last received bits. */ /** Last received bits. */

@ -30,6 +30,7 @@ public:
/** Processes the bit stream. */ /** Processes the bit stream. */
virtual void process(const Buffer<uint8_t> &buffer, bool allow_overwrite); virtual void process(const Buffer<uint8_t> &buffer, bool allow_overwrite);
/** Unpacks a AX.25 encoded call (address). */
static void unpackCall(const uint8_t *buffer, std::string &call, int &ssid, bool &addrExt); static void unpackCall(const uint8_t *buffer, std::string &call, int &ssid, bool &addrExt);
protected: protected:

Loading…
Cancel
Save