Software documentation

I am trying to understand the software for ArduCopter 3.2.1. I couldn’t understand how user specified inputs are converted into required rates and then required PWM for motors. Any documentation available?

From the documentation available on the link http://ardupilot.org/dev/docs/apmcopter-programming-attitude-control-2.html I understood the overall flow but though going through software I didn’t understand what algorithms are used.

Thanks in advance!

Ojas

The short answer is “it’s too complicated to explain in one forum post”. In fact it’s way more code than any one person could even understand entirely… it sounds like you are going to need to dig into the source code and look around some more.!

maybe poke around here: https://github.com/ArduPilot/ardupilot ( in particular the “ArduCopter” and “libraries” folders is a good place to start ). I find I use “search” a lot.

1 Like

Thanks DavidBuzz for reply. I have already downloaded the code and surfing through it but didn’t understand specifically how motor PWM signals are generated.

The PWM signals are generated with the HAL library which you can find under https://github.com/ArduPilot/ardupilot/tree/ArduCopter-3.2.1/libraries/AP_HAL

The format from what I’ve read so far is:
hal.rcout->enable_ch(i);
hal.rcout->write(i, 1050 + i*50);
Where i is a channel, and 1050 would be the PWM output

But there is a lot to the code, so it’s hard to just read through and understand it.