mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-21 15:38:23 -04:00
27 lines
604 B
C++
27 lines
604 B
C++
/*
|
|
* @file CommunicationMuxChannel.cpp
|
|
* @author Mateusz Piesta (mateusz.piesta@mudita.com)
|
|
* @date 28.06.19
|
|
* @brief
|
|
* @copyright Copyright (C) 2019 mudita.com
|
|
* @details
|
|
*/
|
|
|
|
|
|
|
|
#include "CommunicationMuxChannel.hpp"
|
|
|
|
|
|
CommunicationMuxChannel::CommunicationMuxChannel(MuxDaemon* mux):
|
|
MuxChannel(mux,2,MuxChannel::MuxChannelType ::Communication,"CommunicationChannel")
|
|
{
|
|
|
|
}
|
|
|
|
CommunicationMuxChannel::~CommunicationMuxChannel() {
|
|
|
|
}
|
|
|
|
int CommunicationMuxChannel::ParseInMessage(MuxChannel::MuxChannelMsg *msg) {
|
|
LOG_FATAL((name + " received message: " + msg->m_data).c_str());
|
|
} |