How does this function send pwm to the motors?

void RCOutput::push(void)
{
corked = false;
push_local();
#if HAL_WITH_IO_MCU
if (AP_BoardConfig::io_enabled()) {
iomcu.push();
}
#endif
}

check the push_local() function that the one that update the pwm or in the iomcu for the board that got it

1 Like