Files
paparazzi/sw/airborne/link_mcu_usart.h
T
Christophe De Wagter 3fbef2e490 [fixedwing][feature] AP and FBW on different boards connected via Uart
* with example airframe and updated outdated airframes
* renamed spi version and make it a separate subsystem (e.g. 2 twogs)
2012-10-09 18:37:55 +02:00

51 lines
1.3 KiB
C

/*
* Copyright (C) 2010-2012 The Paparazzi Team
*
* This file is part of paparazzi.
*
* paparazzi is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* paparazzi is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with paparazzi; see the file COPYING. If not, write to
* the Free Software Foundation, 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*
*/
/** \brief Transport for the communication between FBW and AP via UART.
*/
#ifndef LINK_MCU_H
#define LINK_MCU_H
#include <inttypes.h>
#include "inter_mcu.h"
struct link_mcu_msg {
union {
struct fbw_state from_fbw;
struct ap_state from_ap;
} payload;
};
extern struct link_mcu_msg link_mcu_from_ap_msg;
extern struct link_mcu_msg link_mcu_from_fbw_msg;
extern bool_t link_mcu_received;
extern void link_mcu_send( void );
extern void link_mcu_init( void );
extern void link_mcu_event_task( void );
extern void link_mcu_periodic_task( void );
#endif