FIX: fixed some bugs

ADD: added raw_track message frame
This commit is contained in:
Henry Winkel
2022-11-15 15:55:24 +01:00
parent cf1800ffba
commit 8fcf4244b0
25 changed files with 1799 additions and 158 deletions

View File

@@ -0,0 +1,25 @@
#pragma once
#include "google/protobuf/message.h"
#include <WHISPER/Messages/Message.hpp>
#include <WHISPER/Messages/Protos/raw_track.pb.h>
#include <string>
#include <loguru.hpp>
namespace WHISPER {
class RawTrack : public Message
{
private:
messages::raw_track::RawTrack trackMessage;
public:
std::uint32_t trackNo;
RawTrack(std::string receivedMessage);
RawTrack(std::uint32_t deviceID,WHISPER::MsgTopics topic, SourceType src,std::uint32_t trackNo);
};
}