]> mj.ucw.cz Git - home-hw.git/blob - Inc/main.h
Files auto-generated by Cube MX
[home-hw.git] / Inc / main.h
1 /**\r
2   ******************************************************************************\r
3   * @file           : main.h\r
4   * @brief          : Header for main.c file.\r
5   *                   This file contains the common defines of the application.\r
6   ******************************************************************************\r
7   ** This notice applies to any and all portions of this file\r
8   * that are not between comment pairs USER CODE BEGIN and\r
9   * USER CODE END. Other portions of this file, whether \r
10   * inserted by the user or by software development tools\r
11   * are owned by their respective copyright owners.\r
12   *\r
13   * COPYRIGHT(c) 2018 STMicroelectronics\r
14   *\r
15   * Redistribution and use in source and binary forms, with or without modification,\r
16   * are permitted provided that the following conditions are met:\r
17   *   1. Redistributions of source code must retain the above copyright notice,\r
18   *      this list of conditions and the following disclaimer.\r
19   *   2. Redistributions in binary form must reproduce the above copyright notice,\r
20   *      this list of conditions and the following disclaimer in the documentation\r
21   *      and/or other materials provided with the distribution.\r
22   *   3. Neither the name of STMicroelectronics nor the names of its contributors\r
23   *      may be used to endorse or promote products derived from this software\r
24   *      without specific prior written permission.\r
25   *\r
26   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"\r
27   * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r
28   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r
29   * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\r
30   * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r
31   * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\r
32   * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\r
33   * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\r
34   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r
35   * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
36   *\r
37   ******************************************************************************\r
38   */\r
39 \r
40 /* Define to prevent recursive inclusion -------------------------------------*/\r
41 #ifndef __MAIN_H__\r
42 #define __MAIN_H__\r
43 \r
44 /* Includes ------------------------------------------------------------------*/\r
45 #include "stm32f0xx_ll_crs.h"\r
46 #include "stm32f0xx_ll_rcc.h"\r
47 #include "stm32f0xx_ll_bus.h"\r
48 #include "stm32f0xx_ll_system.h"\r
49 #include "stm32f0xx_ll_exti.h"\r
50 #include "stm32f0xx_ll_cortex.h"\r
51 #include "stm32f0xx_ll_utils.h"\r
52 #include "stm32f0xx_ll_pwr.h"\r
53 #include "stm32f0xx_ll_dma.h"\r
54 #include "stm32f0xx_ll_usart.h"\r
55 #include "stm32f0xx_ll_gpio.h"\r
56 \r
57 /* USER CODE BEGIN Includes */\r
58 \r
59 /* USER CODE END Includes */\r
60 \r
61 /* Private define ------------------------------------------------------------*/\r
62 \r
63 #define B1_Pin LL_GPIO_PIN_13\r
64 #define B1_GPIO_Port GPIOC\r
65 #define USART_TX_Pin LL_GPIO_PIN_2\r
66 #define USART_TX_GPIO_Port GPIOA\r
67 #define USART_RX_Pin LL_GPIO_PIN_3\r
68 #define USART_RX_GPIO_Port GPIOA\r
69 #define LD2_Pin LL_GPIO_PIN_5\r
70 #define LD2_GPIO_Port GPIOA\r
71 #define TMS_Pin LL_GPIO_PIN_13\r
72 #define TMS_GPIO_Port GPIOA\r
73 #define TCK_Pin LL_GPIO_PIN_14\r
74 #define TCK_GPIO_Port GPIOA\r
75 #ifndef NVIC_PRIORITYGROUP_0\r
76 #define NVIC_PRIORITYGROUP_0         ((uint32_t)0x00000007) /*!< 0 bit  for pre-emption priority,\r
77                                                                  4 bits for subpriority */\r
78 #define NVIC_PRIORITYGROUP_1         ((uint32_t)0x00000006) /*!< 1 bit  for pre-emption priority,\r
79                                                                  3 bits for subpriority */\r
80 #define NVIC_PRIORITYGROUP_2         ((uint32_t)0x00000005) /*!< 2 bits for pre-emption priority,\r
81                                                                  2 bits for subpriority */\r
82 #define NVIC_PRIORITYGROUP_3         ((uint32_t)0x00000004) /*!< 3 bits for pre-emption priority,\r
83                                                                  1 bit  for subpriority */\r
84 #define NVIC_PRIORITYGROUP_4         ((uint32_t)0x00000003) /*!< 4 bits for pre-emption priority,\r
85                                                                  0 bit  for subpriority */\r
86 #endif\r
87 \r
88 /* ########################## Assert Selection ############################## */\r
89 /**\r
90   * @brief Uncomment the line below to expanse the "assert_param" macro in the \r
91   *        HAL drivers code\r
92   */\r
93 /* #define USE_FULL_ASSERT    1U */\r
94 \r
95 /* USER CODE BEGIN Private defines */\r
96 \r
97 /* USER CODE END Private defines */\r
98 \r
99 #ifdef __cplusplus\r
100  extern "C" {\r
101 #endif\r
102 void _Error_Handler(char *, int);\r
103 \r
104 #define Error_Handler() _Error_Handler(__FILE__, __LINE__)\r
105 #ifdef __cplusplus\r
106 }\r
107 #endif\r
108 \r
109 #endif /* __MAIN_H__ */\r
110 \r
111 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/\r