main.h 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /**
  2. ******************************************************************************
  3. * @file : main.h
  4. * @brief : Header for main.c file.
  5. * This file contains the common defines of the application.
  6. ******************************************************************************
  7. ** This notice applies to any and all portions of this file
  8. * that are not between comment pairs USER CODE BEGIN and
  9. * USER CODE END. Other portions of this file, whether
  10. * inserted by the user or by software development tools
  11. * are owned by their respective copyright owners.
  12. *
  13. * COPYRIGHT(c) 2019 STMicroelectronics
  14. *
  15. * Redistribution and use in source and binary forms, with or without modification,
  16. * are permitted provided that the following conditions are met:
  17. * 1. Redistributions of source code must retain the above copyright notice,
  18. * this list of conditions and the following disclaimer.
  19. * 2. Redistributions in binary form must reproduce the above copyright notice,
  20. * this list of conditions and the following disclaimer in the documentation
  21. * and/or other materials provided with the distribution.
  22. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  23. * may be used to endorse or promote products derived from this software
  24. * without specific prior written permission.
  25. *
  26. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  27. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  28. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  29. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  30. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  31. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  32. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  33. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  34. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  35. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  36. *
  37. ******************************************************************************
  38. */
  39. /* Define to prevent recursive inclusion -------------------------------------*/
  40. #ifndef __MAIN_H__
  41. #define __MAIN_H__
  42. /* Includes ------------------------------------------------------------------*/
  43. /* USER CODE BEGIN Includes */
  44. /* USER CODE END Includes */
  45. /* Private define ------------------------------------------------------------*/
  46. #define DEBUG 1
  47. #define NormalWork 1
  48. #define BaudRate250K 0
  49. #define MS2305 //MS2304 »ò MS2305
  50. #define BREAK_IN_Pin GPIO_PIN_12
  51. #define BREAK_IN_GPIO_Port GPIOB
  52. #define BREAK_IN_EXTI_IRQn EXTI15_10_IRQn
  53. #define SYC_IO_Pin GPIO_PIN_12
  54. #define SYC_IO_GPIO_Port GPIOC
  55. #define BREAK_LEFT_Pin GPIO_PIN_13
  56. #define BREAK_LEFT_GPIO_Port GPIOC
  57. /* ########################## Assert Selection ############################## */
  58. /**
  59. * @brief Uncomment the line below to expanse the "assert_param" macro in the
  60. * HAL drivers code
  61. */
  62. /* #define USE_FULL_ASSERT 1U */
  63. /* USER CODE BEGIN Private defines */
  64. typedef enum TrueOrFalse_Flag
  65. {
  66. TRUE = 0U,
  67. FALSE,
  68. }TrueOrFalse_Flag_Struct_t;
  69. extern unsigned char TimeBase_10ms;
  70. /* USER CODE END Private defines */
  71. #ifdef __cplusplus
  72. extern "C" {
  73. #endif
  74. void _Error_Handler(char *, int);
  75. #define Error_Handler() _Error_Handler(__FILE__, __LINE__)
  76. #ifdef __cplusplus
  77. }
  78. #endif
  79. #endif /* __MAIN_H__ */
  80. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/