2012-10-21 14:10:43 +00:00
|
|
|
/*-
|
2013-03-10 16:15:23 +01:00
|
|
|
* Free/Libre Near Field Communication (NFC) library
|
2012-05-29 00:33:22 +00:00
|
|
|
*
|
2013-03-10 16:15:23 +01:00
|
|
|
* Libnfc historical contributors:
|
|
|
|
* Copyright (C) 2009 Roel Verdult
|
|
|
|
* Copyright (C) 2009-2013 Romuald Conty
|
|
|
|
* Copyright (C) 2010-2012 Romain Tartière
|
|
|
|
* Copyright (C) 2010-2013 Philippe Teuwen
|
|
|
|
* Copyright (C) 2012-2013 Ludovic Rousseau
|
|
|
|
* Additional contributors of this file:
|
2012-05-29 00:33:22 +00:00
|
|
|
*
|
2009-10-12 14:52:26 +00:00
|
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU Lesser General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
* option) any later version.
|
2012-05-29 00:33:22 +00:00
|
|
|
*
|
2009-10-12 14:52:26 +00:00
|
|
|
* 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 Lesser General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2012-10-21 14:10:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2009-11-04 10:14:17 +00:00
|
|
|
* @file pn532_uart.h
|
2011-03-05 10:58:36 +00:00
|
|
|
* @brief Driver for PN532 connected in UART (HSU)
|
2009-10-12 14:52:26 +00:00
|
|
|
*/
|
2009-10-06 10:38:57 +00:00
|
|
|
|
2009-11-24 13:03:48 +00:00
|
|
|
#ifndef __NFC_DRIVER_PN532_UART_H__
|
2012-10-21 14:10:43 +00:00
|
|
|
#define __NFC_DRIVER_PN532_UART_H__
|
2009-12-03 15:57:13 +00:00
|
|
|
|
2012-10-21 14:10:43 +00:00
|
|
|
#include <nfc/nfc-types.h>
|
2011-03-02 15:00:44 +00:00
|
|
|
|
2012-01-17 14:17:01 +00:00
|
|
|
extern const struct nfc_driver pn532_uart_driver;
|
2009-10-06 10:38:57 +00:00
|
|
|
|
2009-11-24 13:03:48 +00:00
|
|
|
#endif // ! __NFC_DRIVER_PN532_UART_H__
|