Tweak configs for CF2

Fix build error

Capitalization mistake for headers

Non-Mac compiler issue

Baudrate for crazyflie nrf and fix code style

Save space

Cleanup mpu9250 driver
This commit is contained in:
Dennis Shtatnov
2016-08-22 00:21:29 -04:00
committed by Lorenz Meier
parent 5100785f51
commit e6b98b2ab8
16 changed files with 172 additions and 381 deletions

View File

@@ -642,6 +642,10 @@ int Mavlink::mavlink_open_uart(int baud, const char *uart_name)
#define B921600 921600
#endif
#ifndef B1000000
#define B1000000 1000000
#endif
/* process baud rate */
int speed;
@@ -2630,6 +2634,3 @@ int mavlink_main(int argc, char *argv[])
return 0;
}