Difference between revisions of "Subsystems"
Fvantienen (talk | contribs) |
|||
Line 124: | Line 124: | ||
* spektrum | * spektrum | ||
* datalink | * datalink | ||
* superbitrf_rc | |||
| | | | ||
* all | * all | ||
* all | * all | ||
* | * all | ||
* rotorcraft | |||
| | | | ||
* all | * all | ||
* STM32 | * STM32 | ||
* all | * all | ||
* STM32 | |||
| Radio Control implementations | | Radio Control implementations | ||
|- | |- | ||
Line 139: | Line 142: | ||
* transparent_usb | * transparent_usb | ||
* xbee_api | * xbee_api | ||
* superbitrf | |||
| | | | ||
* all | * all | ||
* all | |||
* all | |||
* rotorcraft | |||
| | | | ||
* all | * all | ||
* LPC21xx | * LPC21xx | ||
* all | * all | ||
* STM32 | |||
| Telemetry implementations | | Telemetry implementations | ||
|- | |- |
Revision as of 05:29, 31 August 2013
Mostly a subsystem is a part offering a specific functionality with a defined interface and can have multiple different implementations. (See sw/airborne/subsystems/...)
They are selected and configured with a <subsystem name="foo" type="bar">
in the firmware section of the airframe file.
All this does is basically include a makefile foo_bar.makefile that adds the respective sources and adds a few configuration options. (See conf/firmwares/subsystems/...)
This makes it easier to put an airframe file together (they replace the old raw makefile section) and also allows us to change the code and move/rename files behind the scenes without breaking everyones airframe files.
See FirmwareArchitecture for the differences to Modules, as well as how to write a new subsystem.
Available Subsystems
Name | Types | Firmwares | Architecture | Description |
---|---|---|---|---|
gps |
|
|
|
GPS drivers |
imu |
|
|
|
IMU drivers
Traditional IR sensors can be used for fixedwing but an IMU subsystem is not required |
ahrs |
|
|
|
AHRS algorithms |
radio_control |
|
|
|
Radio Control implementations |
telemetry |
|
|
|
Telemetry implementations |
actuators |
|
|
|
Drivers for different ESCs for rotorcraft
Fixedwing ESCs and servos are possible on all firmwares/architectures |
stabilization |
|
|
|
Attitude control system for rotorcraft |