stm32_usart.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #ifndef _STM32_USART_H_
  2. #define _STM32_USART_H_
  3. /*
  4. * Copyright (C) 2010 by Ulrich Prinz (uprinz2@netscape.net)
  5. * Copyright (C) 2010 by Rittal GmbH & Co. KG. All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. *
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer.
  13. * 2. Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in the
  15. * documentation and/or other materials provided with the distribution.
  16. * 3. Neither the name of the copyright holders nor the names of
  17. * contributors may be used to endorse or promote products derived
  18. * from this software without specific prior written permission.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  23. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  24. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  25. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  26. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  27. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  28. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  29. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  30. * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. * SUCH DAMAGE.
  32. *
  33. * For additional information see http://www.ethernut.de/
  34. *
  35. */
  36. /*
  37. * \verbatim
  38. * $Id: stm32_usart.h 4477 2012-08-20 17:50:01Z haraldkipp $
  39. * \endverbatim
  40. */
  41. /*
  42. * Nut/OS to STM32 Abstraction handler
  43. */
  44. /*
  45. * Function prototypes.
  46. */
  47. static uint32_t Stm32UsartGetSpeed(void);
  48. static int Stm32UsartSetSpeed(uint32_t rate);
  49. static uint8_t Stm32UsartGetDataBits(void);
  50. static int Stm32UsartSetDataBits(uint8_t bits);
  51. static uint8_t Stm32UsartGetParity(void);
  52. static int Stm32UsartSetParity(uint8_t mode);
  53. static uint8_t Stm32UsartGetStopBits(void);
  54. static int Stm32UsartSetStopBits(uint8_t bits);
  55. static uint32_t Stm32UsartGetFlowControl(void);
  56. static int Stm32UsartSetFlowControl(uint32_t flags);
  57. static uint32_t Stm32UsartGetStatus(void);
  58. static int Stm32UsartSetStatus(uint32_t flags);
  59. static uint8_t Stm32UsartGetClockMode(void);
  60. static int Stm32UsartSetClockMode(uint8_t mode);
  61. static void Stm32UsartTxStart(void);
  62. static void Stm32UsartRxStart(void);
  63. static int Stm32UsartInit(void);
  64. static int Stm32UsartDeinit(void);
  65. #endif