Track gyro using a DCM.

This brings in an implementation of some general matrix manipulation routines,
not all of which are used at teh moment.

Output the DCM on the UART at 50Hz for the host to display it usefully.
This commit is contained in:
2011-10-07 23:39:28 +00:00
parent 6a700d0dbe
commit 62732758a8
10 changed files with 430 additions and 16 deletions

1
uart.h
View File

@@ -7,6 +7,7 @@ void init_uart(void);
void putch(char c);
void putstr(char *s);
void putint(unsigned int n);
void putint_s(int n);
void puthex(unsigned int n);
bool getch(char *c);