Skip to content

Commit

Permalink
AP_IOMCU: add iomcu support for reversible mask
Browse files Browse the repository at this point in the history
  • Loading branch information
andyp1per committed Aug 13, 2024
1 parent c0343ce commit 48cac0d
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 1 deletion.
7 changes: 7 additions & 0 deletions libraries/AP_IOMCU/AP_IOMCU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -990,6 +990,13 @@ void AP_IOMCU::set_bidir_dshot_mask(uint16_t mask)
trigger_event(IOEVENT_SET_OUTPUT_MODE);
}

// set reversible mask
void AP_IOMCU::set_reversible_mask(uint16_t mask)
{
mode_out.reversible_mask = mask;
trigger_event(IOEVENT_SET_OUTPUT_MODE);
}

AP_HAL::RCOutput::output_mode AP_IOMCU::get_output_mode(uint8_t& mask) const
{
mask = reg_status.rcout_mask;
Expand Down
3 changes: 3 additions & 0 deletions libraries/AP_IOMCU/AP_IOMCU.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ class AP_IOMCU
// set bi-directional mask
void set_bidir_dshot_mask(uint16_t mask);

// set reversible mask
void set_reversible_mask(uint16_t mask);

// get output mode
AP_HAL::RCOutput::output_mode get_output_mode(uint8_t& mask) const;

Expand Down
6 changes: 5 additions & 1 deletion libraries/AP_IOMCU/iofirmware/iofirmware.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -920,6 +920,7 @@ bool AP_IOMCU_FW::handle_code_write()
mode_out.mode = rx_io_packet.regs[1];
mode_out.bdmask = rx_io_packet.regs[2];
mode_out.esc_type = rx_io_packet.regs[3];
mode_out.reversible_mask = rx_io_packet.regs[4];
break;

case PAGE_REG_SETUP_HEATER_DUTY_CYCLE:
Expand Down Expand Up @@ -1175,6 +1176,7 @@ void AP_IOMCU_FW::rcout_config_update(void)
// see if there is anything to do, we only support setting the mode for a particular channel once
if ((last_output_mode_mask & mode_out.mask) == mode_out.mask
&& (last_output_bdmask & mode_out.bdmask) == mode_out.bdmask
&& (last_output_reversible_mask & mode_out.reversible_mask) == mode_out.reversible_mask
&& last_output_esc_type == mode_out.esc_type) {
return;
}
Expand All @@ -1187,13 +1189,15 @@ void AP_IOMCU_FW::rcout_config_update(void)
#endif
#ifdef HAL_WITH_BIDIR_DSHOT
hal.rcout->set_bidir_dshot_mask(mode_out.bdmask);
hal.rcout->set_dshot_esc_type(AP_HAL::RCOutput::DshotEscType(mode_out.esc_type));
#endif
hal.rcout->set_reversible_mask(mode_out.reversible_mask);
hal.rcout->set_dshot_esc_type(AP_HAL::RCOutput::DshotEscType(mode_out.esc_type));
hal.rcout->set_output_mode(mode_out.mask, (AP_HAL::RCOutput::output_mode)mode_out.mode);
// enabling dshot changes the memory allocation
reg_status.freemem = hal.util->available_memory();
last_output_mode_mask |= mode_out.mask;
last_output_bdmask |= mode_out.bdmask;
last_output_reversible_mask |= mode_out.reversible_mask;
last_output_esc_type = mode_out.esc_type;
break;
case AP_HAL::RCOutput::MODE_PWM_ONESHOT:
Expand Down
1 change: 1 addition & 0 deletions libraries/AP_IOMCU/iofirmware/iofirmware.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ class AP_IOMCU_FW {
uint16_t last_output_mode_mask;
uint16_t last_output_bdmask;
uint16_t last_output_esc_type;
uint16_t last_output_reversible_mask;

// MIXER values
struct page_mixing mixing;
Expand Down
1 change: 1 addition & 0 deletions libraries/AP_IOMCU/iofirmware/ioprotocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ struct page_mode_out {
uint16_t mode;
uint16_t bdmask;
uint16_t esc_type;
uint16_t reversible_mask;
};

struct page_dshot {
Expand Down

0 comments on commit 48cac0d

Please sign in to comment.