mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-22 00:28:30 -04:00
AP_CANManager: added EFI_NWPMU
This commit is contained in:
parent
32c3a2feef
commit
db798ace05
@ -33,7 +33,7 @@ const AP_Param::GroupInfo AP_CANManager::CANDriver_Params::var_info[] = {
|
||||
// @DisplayName: Enable use of specific protocol over virtual driver
|
||||
// @Description: Enabling this option starts selected protocol that will use this virtual driver
|
||||
// @Values{Copter,Plane,Sub}: 0:Disabled,1:UAVCAN,2:KDECAN,3:ToshibaCAN,4:PiccoloCAN,5:CANTester
|
||||
// @Values: 0:Disabled,1:UAVCAN,3:ToshibaCAN,4:PiccoloCAN,5:CANTester
|
||||
// @Values: 0:Disabled,1:UAVCAN,3:ToshibaCAN,4:PiccoloCAN,5:CANTester,6:EFI_NWPMU
|
||||
// @User: Advanced
|
||||
// @RebootRequired: True
|
||||
AP_GROUPINFO("PROTOCOL", 1, AP_CANManager::CANDriver_Params, _driver_type, AP_CANManager::Driver_Type_UAVCAN),
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include <AP_ToshibaCAN/AP_ToshibaCAN.h>
|
||||
#include <AP_SerialManager/AP_SerialManager.h>
|
||||
#include <AP_PiccoloCAN/AP_PiccoloCAN.h>
|
||||
#include <AP_EFI/AP_EFI_NWPMU.h>
|
||||
#include "AP_CANTester.h"
|
||||
#include <GCS_MAVLink/GCS_MAVLink.h>
|
||||
#if CONFIG_HAL_BOARD == HAL_BOARD_LINUX
|
||||
|
@ -57,6 +57,7 @@ public:
|
||||
Driver_Type_ToshibaCAN = 3,
|
||||
Driver_Type_PiccoloCAN = 4,
|
||||
Driver_Type_CANTester = 5,
|
||||
Driver_Type_EFI_NWPMU = 6,
|
||||
};
|
||||
|
||||
void init(void);
|
||||
|
Loading…
Reference in New Issue
Block a user