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.
37 lines
841 B
37 lines
841 B
/**************************************************************************** |
|
* |
|
* (c) 2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org> |
|
* |
|
* QGroundControl is licensed according to the terms in the file |
|
* COPYING.md in the root of the source code directory. |
|
* |
|
****************************************************************************/ |
|
|
|
/* |
|
* This header defines the events::EventType type. |
|
* |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include <cstdlib> |
|
#include <cstdarg> |
|
|
|
#include <QLoggingCategory> |
|
|
|
Q_DECLARE_LOGGING_CATEGORY(EventsLog) |
|
|
|
void qgc_events_parser_debug_printf(const char *fmt, ...); |
|
|
|
//#define LIBEVENTS_PARSER_DEBUG_PRINTF qgc_events_parser_debug_printf |
|
#define LIBEVENTS_DEBUG_PRINTF qgc_events_parser_debug_printf |
|
|
|
#include "MAVLinkProtocol.h" |
|
|
|
namespace events |
|
{ |
|
using EventType = mavlink_event_t; |
|
} // namespace events |
|
|
|
|
|
|
|
|