forked from pz4kybsvg/Conception
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
601 B
22 lines
601 B
/*
|
|
* base_message_serialization.h
|
|
* Base message diagnosis serialization
|
|
*
|
|
* Created by Tony Huang (tony@slamtec.com) at 2017-3-15
|
|
* Copyright 2017 (c) Shanghai Slamtec Co., Ltd.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "../base_messages.h"
|
|
#include <rpos/system/diagnosis/diagnosis_serialization.h>
|
|
|
|
namespace rpos { namespace system { namespace diagnosis { namespace serialization {
|
|
|
|
RP_SLAMWARE_TEST_LOGGING_DECLARE_SERIALIZER(message::base::MotionRequest);
|
|
RP_SLAMWARE_TEST_LOGGING_DECLARE_SERIALIZER(message::base::MovementEstimation);
|
|
|
|
// TODO: health and auxiliary localization messages
|
|
|
|
} } } }
|