Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/drivers/uavcan/actuators/esc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@

#include "esc.hpp"
#include <systemlib/err.h>
#include <parameters/param.h>
#include <drivers/drv_hrt.h>

#define MOTOR_BIT(x) (1<<(x))
Expand Down Expand Up @@ -66,6 +67,12 @@ UavcanEscController::init()

_esc_status_pub.advertise();

int32_t iface_mask{0xFF};

if (param_get(param_find("UAVCAN_ESC_IFACE"), &iface_mask) == OK) {
_uavcan_pub_raw_cmd.getTransferSender().setIfaceMask(iface_mask);
}

return res;
}

Expand Down
25 changes: 25 additions & 0 deletions src/drivers/uavcan/module.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,29 @@
module_name: UAVCAN
parameters:
- group: UAVCAN
definitions:
UAVCAN_ESC_IFACE:
description:
short: Which CAN interfaces to output ESC messages on.
long: |
Since ESC messages are high priority and sent at a high rate, it is
recommended to only enable the interfaces that are actually used.
Otherwise, the ESC messages will arbitrate lower priority messages and
starve other nodes on the bus.
type: bitmask
bit:
0: CAN1
1: CAN2
2: CAN3
3: CAN4
4: CAN5
5: CAN6
6: CAN7
7: CAN8
default: 255
min: 1
max: 255
reboot_required: true
actuator_output:
show_subgroups_if: 'UAVCAN_ENABLE>=3'
config_parameters:
Expand Down
Loading