mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
a2e5e03f07
* GCC12 related fixes but still compiles on GCC9 * Suppress warnings about volatile += * Enable c++20 if supported by the compiler On gcc12 we need to use -std=c++20 since constexpr .c_str() on std::string is only officially available since c++20 and the new gcc wouldnt let us use it with older standard * code format --------- Co-authored-by: Eisenberger Tamas <e.tamas@iwstudio.hu>
99 lines
2.2 KiB
C++
99 lines
2.2 KiB
C++
/*
|
|
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
|
|
* Copyright (C) 2016 Furrtek
|
|
*
|
|
* This file is part of PortaPack.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef __POCSAG_PACKET_H__
|
|
#define __POCSAG_PACKET_H__
|
|
|
|
#include <cstdint>
|
|
#include <cstddef>
|
|
#include <array>
|
|
|
|
#include "baseband.hpp"
|
|
|
|
namespace pocsag {
|
|
|
|
enum BitRate : uint32_t {
|
|
UNKNOWN,
|
|
FSK512 = 512,
|
|
FSK1200 = 1200,
|
|
FSK2400 = 2400,
|
|
FSK3200 = 3200
|
|
};
|
|
|
|
enum PacketFlag : uint32_t {
|
|
NORMAL,
|
|
TIMED_OUT,
|
|
TOO_LONG
|
|
};
|
|
|
|
class POCSAGPacket {
|
|
public:
|
|
void set_timestamp(const Timestamp& value) {
|
|
timestamp_ = value;
|
|
}
|
|
|
|
Timestamp timestamp() const {
|
|
return timestamp_;
|
|
}
|
|
|
|
void set(const size_t index, const uint32_t data) {
|
|
if (index < 16)
|
|
codewords[index] = data;
|
|
}
|
|
|
|
uint32_t operator[](const size_t index) const {
|
|
return (index < 16) ? codewords[index] : 0;
|
|
}
|
|
|
|
void set_bitrate(const uint16_t bitrate) {
|
|
bitrate_ = bitrate;
|
|
}
|
|
|
|
uint16_t bitrate() const {
|
|
return bitrate_;
|
|
}
|
|
|
|
void set_flag(const PacketFlag flag) {
|
|
flag_ = flag;
|
|
}
|
|
|
|
PacketFlag flag() const {
|
|
return flag_;
|
|
}
|
|
|
|
void clear() {
|
|
codewords.fill(0);
|
|
bitrate_ = 0u;
|
|
flag_ = NORMAL;
|
|
}
|
|
|
|
private:
|
|
uint16_t bitrate_{0};
|
|
PacketFlag flag_{NORMAL};
|
|
std::array<uint32_t, 16> codewords{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
|
|
Timestamp timestamp_{};
|
|
};
|
|
|
|
} /* namespace pocsag */
|
|
|
|
#endif /*__POCSAG_PACKET_H__*/
|