usart_cb_at91npl.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #ifndef NPL_UART_H_
  2. #define NPL_UART_H_
  3. /*
  4. * Copyright (C) 2012 by egnite GmbH
  5. * Copyright (C) 2001-2003 by egnite Software GmbH
  6. *
  7. * All rights reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. *
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in the
  17. * documentation and/or other materials provided with the distribution.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  22. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  23. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  24. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  25. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  26. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  27. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  28. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  29. * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  30. * SUCH DAMAGE.
  31. *
  32. * For additional information see http://www.ethernut.de/
  33. */
  34. #include <sys/device.h>
  35. #include <dev/usart_cb.h>
  36. /*!
  37. * \defgroup xgUsartCbAt91Npl Ethernut 3 Low Level USART Driver
  38. * \ingroup xgUsartCbAt91
  39. */
  40. /*@{*/
  41. /*!
  42. * \brief UART interrupt handler for Ethernut 3.
  43. */
  44. extern void NplUsartCbInterrupt(void *arg);
  45. /*!
  46. * \brief UART hardware handshake interrupt handler for Ethernut 3.
  47. */
  48. extern void NplCtsInterrupt(void *arg);
  49. /*!
  50. * \brief Start Ethernut 3 UART receiver.
  51. */
  52. extern void NplUsartCbRxStart(USARTCB_DCB *dcb);
  53. /*!
  54. * \brief Start Ethernut 3 UART transmitter.
  55. */
  56. extern void NplUsartCbTxStart(USARTCB_DCB *dcb);
  57. /*!
  58. * \brief UART0 device structure for Ethernut 3.
  59. */
  60. extern NUTDEVICE devUsart0CbNpl;
  61. /*@}*/
  62. #endif