]> mj.ucw.cz Git - home-hw.git/blob - Inc/main.h
Better connection of I2C/BMP
[home-hw.git] / Inc / main.h
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) 2018 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
40 /* Define to prevent recursive inclusion -------------------------------------*/
41 #ifndef __MAIN_H__
42 #define __MAIN_H__
43
44 /* Includes ------------------------------------------------------------------*/
45 #include "stm32f0xx_ll_i2c.h"
46 #include "stm32f0xx_ll_crs.h"
47 #include "stm32f0xx_ll_rcc.h"
48 #include "stm32f0xx_ll_bus.h"
49 #include "stm32f0xx_ll_system.h"
50 #include "stm32f0xx_ll_exti.h"
51 #include "stm32f0xx_ll_cortex.h"
52 #include "stm32f0xx_ll_utils.h"
53 #include "stm32f0xx_ll_pwr.h"
54 #include "stm32f0xx_ll_dma.h"
55 #include "stm32f0xx_ll_usart.h"
56 #include "stm32f0xx_ll_gpio.h"
57
58 /* USER CODE BEGIN Includes */
59
60 /* USER CODE END Includes */
61
62 /* Private define ------------------------------------------------------------*/
63
64 #define BLUE_BUTTON_Pin LL_GPIO_PIN_13
65 #define BLUE_BUTTON_GPIO_Port GPIOC
66 #define USART_TX_Pin LL_GPIO_PIN_2
67 #define USART_TX_GPIO_Port GPIOA
68 #define USART_RX_Pin LL_GPIO_PIN_3
69 #define USART_RX_GPIO_Port GPIOA
70 #define LD2_Pin LL_GPIO_PIN_5
71 #define LD2_GPIO_Port GPIOA
72 #define BMP_DONE_Pin LL_GPIO_PIN_9
73 #define BMP_DONE_GPIO_Port GPIOC
74 #define TMS_Pin LL_GPIO_PIN_13
75 #define TMS_GPIO_Port GPIOA
76 #define TCK_Pin LL_GPIO_PIN_14
77 #define TCK_GPIO_Port GPIOA
78 #ifndef NVIC_PRIORITYGROUP_0
79 #define NVIC_PRIORITYGROUP_0         ((uint32_t)0x00000007) /*!< 0 bit  for pre-emption priority,
80                                                                  4 bits for subpriority */
81 #define NVIC_PRIORITYGROUP_1         ((uint32_t)0x00000006) /*!< 1 bit  for pre-emption priority,
82                                                                  3 bits for subpriority */
83 #define NVIC_PRIORITYGROUP_2         ((uint32_t)0x00000005) /*!< 2 bits for pre-emption priority,
84                                                                  2 bits for subpriority */
85 #define NVIC_PRIORITYGROUP_3         ((uint32_t)0x00000004) /*!< 3 bits for pre-emption priority,
86                                                                  1 bit  for subpriority */
87 #define NVIC_PRIORITYGROUP_4         ((uint32_t)0x00000003) /*!< 4 bits for pre-emption priority,
88                                                                  0 bit  for subpriority */
89 #endif
90
91 /* ########################## Assert Selection ############################## */
92 /**
93   * @brief Uncomment the line below to expanse the "assert_param" macro in the 
94   *        HAL drivers code
95   */
96 /* #define USE_FULL_ASSERT    1U */
97
98 /* USER CODE BEGIN Private defines */
99
100 void run_test(void);
101
102 /* USER CODE END Private defines */
103
104 #ifdef __cplusplus
105  extern "C" {
106 #endif
107 void _Error_Handler(char *, int);
108
109 #define Error_Handler() _Error_Handler(__FILE__, __LINE__)
110 #ifdef __cplusplus
111 }
112 #endif
113
114 #endif /* __MAIN_H__ */
115
116 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/