2009-12-01 18:15:33 +01:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file pios_usart.h
|
2010-01-31 18:56:54 +01:00
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
2010-03-10 10:12:31 +01:00
|
|
|
* Parts by Thorsten Klose (tk@midibox.org)
|
2009-12-01 18:15:33 +01:00
|
|
|
* @brief USART functions header.
|
|
|
|
* @see The GNU Public License (GPL) Version 3
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* This program 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PIOS_USART_H
|
|
|
|
#define PIOS_USART_H
|
|
|
|
|
|
|
|
|
|
|
|
/* Global Types */
|
|
|
|
|
|
|
|
/* Public Functions */
|
2009-12-08 03:13:21 +01:00
|
|
|
extern void PIOS_USART_Init(void);
|
2010-06-13 06:24:26 +02:00
|
|
|
extern void PIOS_USART_ChangeBaud(uint8_t usart, uint32_t baud);
|
2009-12-08 03:13:21 +01:00
|
|
|
|
2010-06-13 06:24:26 +02:00
|
|
|
extern int32_t PIOS_USART_RxBufferFree(uint8_t usart);
|
|
|
|
extern int32_t PIOS_USART_RxBufferUsed(uint8_t usart);
|
|
|
|
extern int32_t PIOS_USART_RxBufferGet(uint8_t usart);
|
|
|
|
extern int32_t PIOS_USART_RxBufferPeek(uint8_t usart);
|
|
|
|
extern int32_t PIOS_USART_RxBufferPut(uint8_t usart, uint8_t b);
|
2009-12-24 04:01:34 +01:00
|
|
|
|
2010-06-13 06:24:26 +02:00
|
|
|
extern int32_t PIOS_USART_TxBufferFree(uint8_t usart);
|
|
|
|
extern int32_t PIOS_USART_TxBufferGet(uint8_t usart);
|
2010-07-04 04:21:08 +02:00
|
|
|
extern int32_t PIOS_USART_TxBufferPutMoreNonBlocking(uint8_t usart, const uint8_t *buffer, uint16_t len);
|
|
|
|
extern int32_t PIOS_USART_TxBufferPutMore(uint8_t usart, const uint8_t *buffer, uint16_t len);
|
2010-06-13 06:24:26 +02:00
|
|
|
extern int32_t PIOS_USART_TxBufferPutNonBlocking(uint8_t usart, uint8_t b);
|
|
|
|
extern int32_t PIOS_USART_TxBufferPut(uint8_t usart, uint8_t b);
|
2009-12-01 18:15:33 +01:00
|
|
|
|
2010-06-13 06:24:26 +02:00
|
|
|
extern void PIOS_USART_IRQ_Handler(uint8_t usart);
|
2009-12-01 18:15:33 +01:00
|
|
|
#endif /* PIOS_USART_H */
|