mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-09 09:28:31 -04:00
AP_CANManager: fixed printf format errors
This commit is contained in:
parent
45f6b16dec
commit
7cdd18924e
@ -91,7 +91,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Method to log status and debug information for review while debugging
|
// Method to log status and debug information for review while debugging
|
||||||
void log_text(AP_CANManager::LogLevel loglevel, const char *tag, const char *fmt, ...);
|
void log_text(AP_CANManager::LogLevel loglevel, const char *tag, const char *fmt, ...) FMT_PRINTF(4,5);
|
||||||
|
|
||||||
void log_retrieve(ExpandingString &str) const;
|
void log_retrieve(ExpandingString &str) const;
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@ const AP_Param::GroupInfo CANTester::var_info[] = {
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#define debug_can(level_debug, fmt, args...) do { AP::can().log_text(level_debug, "CANTester", fmt, #args); } while (0)
|
#define debug_can(level_debug, fmt, args...) do { AP::can().log_text(level_debug, "CANTester", fmt, ##args); } while (0)
|
||||||
|
|
||||||
bool CANTester::add_interface(AP_HAL::CANIface* can_iface)
|
bool CANTester::add_interface(AP_HAL::CANIface* can_iface)
|
||||||
{
|
{
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include <AP_HAL/utility/sparse-endian.h>
|
#include <AP_HAL/utility/sparse-endian.h>
|
||||||
#include <AP_Vehicle/AP_Vehicle.h>
|
#include <AP_Vehicle/AP_Vehicle.h>
|
||||||
|
|
||||||
#define debug_can(level_debug, fmt, args...) do { AP::can().log_text(level_debug, "TestKDECAN", fmt, #args); } while (0)
|
#define debug_can(level_debug, fmt, args...) do { AP::can().log_text(level_debug, "TestKDECAN", fmt, ##args); } while (0)
|
||||||
extern const AP_HAL::HAL& hal;
|
extern const AP_HAL::HAL& hal;
|
||||||
|
|
||||||
void AP_CANTester_KDECAN::count_msg(uint32_t frame_id)
|
void AP_CANTester_KDECAN::count_msg(uint32_t frame_id)
|
||||||
|
Loading…
Reference in New Issue
Block a user