hal_st_lld.c 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. /**
  14. * @file hal_st_lld.c
  15. * @brief PLATFORM ST subsystem low level driver source.
  16. *
  17. * @addtogroup ST
  18. * @{
  19. */
  20. #include "hal.h"
  21. #if (OSAL_ST_MODE != OSAL_ST_MODE_NONE) || defined(__DOXYGEN__)
  22. /*===========================================================================*/
  23. /* Driver local definitions. */
  24. /*===========================================================================*/
  25. /*===========================================================================*/
  26. /* Driver exported variables. */
  27. /*===========================================================================*/
  28. /*===========================================================================*/
  29. /* Driver local types. */
  30. /*===========================================================================*/
  31. /*===========================================================================*/
  32. /* Driver local variables and types. */
  33. /*===========================================================================*/
  34. /*===========================================================================*/
  35. /* Driver local functions. */
  36. /*===========================================================================*/
  37. /*===========================================================================*/
  38. /* Driver interrupt handlers. */
  39. /*===========================================================================*/
  40. /*===========================================================================*/
  41. /* Driver exported functions. */
  42. /*===========================================================================*/
  43. /**
  44. * @brief Low level ST driver initialization.
  45. *
  46. * @notapi
  47. */
  48. void st_lld_init(void) {
  49. }
  50. #endif /* OSAL_ST_MODE != OSAL_ST_MODE_NONE */
  51. /** @} */