mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
AP_Logger: params always use set method
This commit is contained in:
parent
ea03ea320c
commit
8352a7b2b3
@ -247,7 +247,7 @@ void AP_LoggerTest_AllTypes::setup(void)
|
||||
{
|
||||
hal.console->printf("Logger All Types 1.0\n");
|
||||
|
||||
log_bitmask = (uint32_t)-1;
|
||||
log_bitmask.set((uint32_t)-1);
|
||||
logger.Init(log_structure, ARRAY_SIZE(log_structure));
|
||||
logger.set_vehicle_armed(true);
|
||||
logger.Write_Message("AP_Logger Test");
|
||||
|
@ -52,7 +52,7 @@ void AP_LoggerTest::setup(void)
|
||||
{
|
||||
hal.console->printf("Logger Log Test 1.0\n");
|
||||
|
||||
log_bitmask = (uint32_t)-1;
|
||||
log_bitmask.set((uint32_t)-1);
|
||||
logger.Init(log_structure, ARRAY_SIZE(log_structure));
|
||||
logger.set_vehicle_armed(true);
|
||||
logger.Write_Message("AP_Logger Test");
|
||||
|
Loading…
Reference in New Issue
Block a user