-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathb_u585i_iot02a_conf_template.h
91 lines (71 loc) · 2.24 KB
/
b_u585i_iot02a_conf_template.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/**
******************************************************************************
* @file b_u585i_iot02a_conf_template.h
* @author MCD Application Team
* @brief configuration file.
* This file should be copied to the application folder and renamed
* to b_u585i_iot02a_conf.h
******************************************************************************
* @attention
*
* Copyright (c) 2021 STMicroelectronics.
* All rights reserved.
*
* This software is licensed under terms that can be found in the LICENSE file
* in the root directory of this software component.
* If no LICENSE file comes with this software, it is provided AS-IS.
*
******************************************************************************
*/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef B_U585I_IOT02A_CONF_H
#define B_U585I_IOT02A_CONF_H
#ifdef __cplusplus
extern "C" {
#endif
/* Includes ------------------------------------------------------------------*/
#include "stm32u5xx_hal.h"
/** @addtogroup BSP
* @{
*/
/** @addtogroup B_U585I_IOT02A
* @{
*/
/** @defgroup B_U585I_IOT02A_CONFIG Config
* @{
*/
/** @defgroup B_U585I_IOT02A_CONFIG_Exported_Constants Exported Constants
* @{
*/
/* COM define */
#define USE_BSP_COM_FEATURE 0U
#define USE_COM_LOG 0U
/* Default EEPROM max trials */
#define EEPROM_MAX_TRIALS 3000U
/* IRQ priorities */
#define BSP_BUTTON_USER_IT_PRIORITY 15U /* Default is lowest priority level */
/* Audio interrupt priority */
#define BSP_AUDIO_IN_IT_PRIORITY 15U /* Default is lowest priority level */
/* CAMERA interrupt priority */
#define BSP_CAMERA_IT_PRIORITY 14U /* Default is lowest priority level */
/* I2C1 and I2C2 Frequencies in Hz */
#define BUS_I2C1_FREQUENCY 100000UL /* Frequency of I2C1 = 100 KHz*/
#define BUS_I2C2_FREQUENCY 100000UL /* Frequency of I2C2 = 100 KHz*/
/* Usage of USBPD PWR TRACE system */
#define USE_BSP_USBPD_PWR_TRACE 0U /* USBPD BSP trace system is disabled */
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/
#ifdef __cplusplus
}
#endif
#endif /* B_U585I_IOT02A_CONF_H */