Rename ::Packet to baseband::Packet. Remove IPC packet types.

This commit is contained in:
Jared Boone
2015-12-08 15:15:51 -08:00
parent 280acfd227
commit d0d97e92cb
15 changed files with 69 additions and 76 deletions
@@ -19,12 +19,14 @@
* Boston, MA 02110-1301, USA.
*/
#ifndef __PACKET_H__
#define __PACKET_H__
#ifndef __BASEBAND_PACKET_H__
#define __BASEBAND_PACKET_H__
#include <cstddef>
#include <bitset>
namespace baseband {
class Packet {
public:
void add(const bool symbol) {
@@ -54,4 +56,6 @@ private:
size_t count { 0 };
};
#endif/*__PACKET_H__*/
} /* namespace baseband */
#endif/*__BASEBAND_PACKET_H__*/
+12 -23
View File
@@ -27,7 +27,7 @@
#include <array>
#include <functional>
#include "packet.hpp"
#include "baseband_packet.hpp"
#include "utility.hpp"
@@ -203,10 +203,6 @@ public:
ChannelSpectrum spectrum;
};
struct AISPacket {
::Packet packet;
};
class AISPacketMessage : public Message {
public:
constexpr AISPacketMessage(
@@ -214,11 +210,7 @@ public:
{
}
AISPacket packet;
};
struct TPMSPacket {
::Packet packet;
baseband::Packet packet;
};
class TPMSPacketMessage : public Message {
@@ -228,7 +220,7 @@ public:
{
}
TPMSPacket packet;
baseband::Packet packet;
};
class ShutdownMessage : public Message {
@@ -239,17 +231,6 @@ public:
}
};
struct ERTPacket {
enum class Type : uint32_t {
Unknown = 0,
IDM = 1,
SCM = 2,
};
Type type { Type::Unknown };
::Packet packet;
};
class ERTPacketMessage : public Message {
public:
constexpr ERTPacketMessage(
@@ -257,7 +238,15 @@ public:
{
}
ERTPacket packet;
enum class Type : uint32_t {
Unknown = 0,
IDM = 1,
SCM = 2,
};
Type type { Type::Unknown };
baseband::Packet packet;
};
class MessageHandlerMap {