File tree Expand file tree Collapse file tree 9 files changed +26
-77
lines changed Expand file tree Collapse file tree 9 files changed +26
-77
lines changed File renamed without changes.
File renamed without changes.
File renamed without changes.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 23
23
#include "stm32h7xx.h"
24
24
#include "stm32h7xx_ll_tim.h"
25
25
#include "cmsis_nvic.h"
26
-
26
+
27
27
#define TIM_MST TIM5
28
28
#define TIM_MST_IRQ TIM5_IRQn
29
29
#define TIM_MST_RCC __TIM5_CLK_ENABLE()
Original file line number Diff line number Diff line change 27
27
28
28
/* Includes ------------------------------------------------------------------*/
29
29
#include "stm32h7xx_hal_def.h"
30
- #include "stm32h7xx_ll_rtc.h" // MBED PATCH
31
30
32
31
/** @addtogroup STM32H7xx_HAL_Driver
33
32
* @{
Original file line number Diff line number Diff line change 27
27
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
28
*******************************************************************************
29
29
*/
30
- #ifndef MBED_COMMON_OBJECTS_H
31
- #define MBED_COMMON_OBJECTS_H
30
+ #ifndef MBED_OBJECTS_H
31
+ #define MBED_OBJECTS_H
32
32
33
33
#include "cmsis.h"
34
34
#include "PortNames.h"
35
35
#include "PeripheralNames.h"
36
36
#include "PinNames.h"
37
37
#include "stm32h7xx_ll_usart.h"
38
+ #include "stm32h7xx_ll_rtc.h"
38
39
39
40
#ifdef __cplusplus
40
41
extern "C" {
41
42
#endif
42
43
44
+ struct gpio_irq_s {
45
+ IRQn_Type irq_n ;
46
+ uint32_t irq_index ;
47
+ uint32_t event ;
48
+ PinName pin ;
49
+ };
50
+
51
+ struct port_s {
52
+ PortName port ;
53
+ uint32_t mask ;
54
+ PinDirection direction ;
55
+ __IO uint32_t * reg_in ;
56
+ __IO uint32_t * reg_out ;
57
+ };
58
+
59
+ struct trng_s {
60
+ RNG_HandleTypeDef handle ;
61
+ };
62
+
43
63
struct pwmout_s {
44
64
PWMName pwm ;
45
65
PinName pin ;
@@ -154,4 +174,3 @@ struct can_s {
154
174
#endif
155
175
156
176
#endif
157
-
Original file line number Diff line number Diff line change 95
95
defined(TARGET_STM32F446RE ) || \
96
96
defined(TARGET_STM32F446VE ) || \
97
97
defined(TARGET_STM32F446ZE ) || \
98
- defined(TARGET_STM32H743ZI ) || \
99
- defined(TARGET_STM32H753ZI ))
98
+ defined(TARGET_STM32H743xI ) || \
99
+ defined(TARGET_STM32H753xI ))
100
100
#define INITIAL_SP (0x20020000UL)
101
101
102
102
#elif (defined(TARGET_STM32F429ZI ) || \
Original file line number Diff line number Diff line change 3174
3174
"core" : " Cortex-M7FD" ,
3175
3175
"extra_labels_add" : [
3176
3176
" STM32H7" ,
3177
- " STM32H743" ,
3178
- " STM32H743xI" ,
3179
- " STM32H743ZI"
3177
+ " STM32H743xI"
3180
3178
],
3181
3179
"config" : {
3182
3180
"d11_configuration" : {
You can’t perform that action at this time.
0 commit comments