pchickey / p4l-ahrs

Firmware for an Arduino-based Attitude and Heading Reference Sensor (AHRS), a subset of the Paparazzi for Linux project. Right now it supports the STMicro LSM303 three-axis accellerometer and magnetometer

Home Page:http://moreproductive.org/autopilot/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

p4-ahrs
----------------

This is a program for the Arduino which reads LMS303DLH 3-axis magnetometer and accellerometer, made by ST Micro. I'll be adding support for an Invensense three axis gyro soon.

I wrote this code as part of the Rutgers Autonomous Aircraft Team. A big thank you to ST Micro and Invensense for donating eval boards to our project.

This sensor and code is used in the Paparazzi for Linux project:
http://moreproductive.org/autopilot

Accellerometer and magnetometer readings are written to the serial port with the following NMEA style format:
$<sensor>,<axis>,<value>\r\n
using the following symbols:
$[A|M],[X|Y|Z],[-]?[0-9]+\r\n

For example:
$A,X,484
$M,Y,-399

Currently, some debugging information and the results of the sensor self-test is printed in a human-friendly format on boot. I'm working on better error handling code and a way to communicate exceptions over the serial link. 

The code currently reads at about 2Hz, as determined by a delay(500) call. I'll be improving the speed of the code soon by having it check the status registers of the accellerometer and magnetometer, which will be doing conversions at different rates. 

All code by Pat Hickey - pat@moreproductive.org
This code is released into the public domain, so you can do whatever you like, but if you find it useful or have problems I'd like to hear from you!

About

Firmware for an Arduino-based Attitude and Heading Reference Sensor (AHRS), a subset of the Paparazzi for Linux project. Right now it supports the STMicro LSM303 three-axis accellerometer and magnetometer

http://moreproductive.org/autopilot/