Skip to content

Commit

Permalink
[fixedwing][fix] includes for link_mcu_spi
Browse files Browse the repository at this point in the history
  • Loading branch information
dewagter authored and flixr committed Oct 9, 2012
1 parent 3fbef2e commit 1d6ea24
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion sw/airborne/firmwares/fixedwing/main_ap.c
Expand Up @@ -38,7 +38,7 @@
#include "mcu.h"
#include "mcu_periph/sys_time.h"

#include "link_mcu.h"
#include "link_mcu_spi.h"

// Sensors
#if USE_GPS
Expand Down
2 changes: 1 addition & 1 deletion sw/airborne/firmwares/fixedwing/main_fbw.c
Expand Up @@ -46,7 +46,7 @@
#include "mcu_periph/i2c.h"

#ifdef MCU_SPI_LINK
#include "link_mcu.h"
#include "link_mcu_spi.h"
#endif

#ifdef MCU_UART_LINK
Expand Down
2 changes: 1 addition & 1 deletion sw/airborne/inter_mcu.c
Expand Up @@ -30,7 +30,7 @@ static struct ap_state _ap_state;
struct fbw_state* fbw_state = &_fbw_state;
struct ap_state* ap_state = &_ap_state;
#else /* SINGLE_MCU */
#include "link_mcu.h"
#include "link_mcu_spi.h"
struct fbw_state* fbw_state = &link_mcu_from_fbw_msg.payload.from_fbw;
struct ap_state* ap_state = &link_mcu_from_ap_msg.payload.from_ap;
#endif /* ! SINGLE_MCU */
Expand Down
2 changes: 1 addition & 1 deletion sw/airborne/link_mcu_spi.c
Expand Up @@ -22,7 +22,7 @@
*
*/

#include "link_mcu.h"
#include "link_mcu_spi.h"
#include "mcu_periph/spi.h"

struct link_mcu_msg link_mcu_from_ap_msg;
Expand Down

0 comments on commit 1d6ea24

Please sign in to comment.