Difference between revisions of "Subsystems"
(added note about spi-based aspirin imu drivers) |
|||
Line 36: | Line 36: | ||
|[[Subsystem/imu|imu]] | |[[Subsystem/imu|imu]] | ||
|| | || | ||
* aspirin_v1.0 | * aspirin_v1.0<sup>'''1'''</sup> | ||
* aspirin_v1.5 | * aspirin_v1.5<sup>'''1'''</sup> | ||
* aspirin_v2.1 | * aspirin_v2.1<sup>'''1'''</sup> | ||
* b2_v1.0 | * b2_v1.0 | ||
* b2_v1.1 | * b2_v1.1 | ||
Line 78: | Line 78: | ||
* all | * all | ||
|| IMU drivers | || IMU drivers | ||
Traditional IR sensors can be used for fixedwing, but an IMU subsystem is not required | |||
Notes: | |||
'''1.''' Use SPI with DMA, alternatively use i2c version for LPC21xx | |||
|- | |- | ||
|- | |- | ||
Line 143: | Line 148: | ||
* all | * all | ||
* all | * all | ||
| | | Drivers for different ESCs for rotorcraft | ||
Fixedwing ESCs and servos are possible on all firmwares/architectures | |||
|} | |} | ||
[[Category:Software]] [[Category:Developer_Documentation]] [[Category:Subsystems]] | [[Category:Software]] [[Category:Developer_Documentation]] [[Category:Subsystems]] |
Revision as of 13:24, 10 May 2012
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/autopilot/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.
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 Notes: 1. Use SPI with DMA, alternatively use i2c version for LPC21xx |
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 |