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

View file

@ -30,7 +30,7 @@
#include "clock_recovery.hpp"
#include "symbol_coding.hpp"
#include "packet_builder.hpp"
#include "packet.hpp"
#include "baseband_packet.hpp"
#include "message.hpp"
@ -64,13 +64,13 @@ private:
{ 0b010101010101010101010101010110, 30, 1 },
{ },
{ 256 },
[this](const ::Packet& packet) {
[this](const baseband::Packet& packet) {
this->payload_handler(packet);
}
};
void consume_symbol(const float symbol);
void payload_handler(const ::Packet& packet);
void payload_handler(const baseband::Packet& packet);
};
#endif/*__PROC_TPMS_H__*/