Files
paparazzi/sw/airborne/inter_mcu.c
T
Felix Ruess 603b40a513 [airborne] fix code style on (nearly) all files
```
find sw/airborne/ -regextype posix-extended -regex 'sw/airborne/.*(chibios-libopencm3|lpcusb|efsl|lpc21/include|lpc21/test/bootloader|subsystems/ahrs)' -prune -o -name '*.[ch]' -exec ./fix_code_style.sh {} +
```

ignored ahrs (for now) to not create unnecessary conflicts for some pending changes..
2014-12-17 02:15:06 +01:00

48 lines
1.4 KiB
C

/*
* Copyright (C) 2003-2005 Pascal Brisset, Antoine Drouin
*
* 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, see
* <http://www.gnu.org/licenses/>.
*/
/**
* @file inter_mcu.c
* Communication between fbw and ap processes.
*
*/
#include "inter_mcu.h"
#if defined SINGLE_MCU
static struct fbw_state _fbw_state;
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"
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 */
volatile bool_t inter_mcu_received_fbw = FALSE;
volatile bool_t inter_mcu_received_ap = FALSE;
#ifdef FBW
/** Variables for monitoring AP communication status */
bool_t ap_ok;
uint8_t time_since_last_ap;
#endif