summaryrefslogtreecommitdiffstatshomepage
path: root/ports/stm32/boards/stm32wbxx_hal_conf_base.h
blob: 79417d768faa6b458234e9a1c5495df67dfbcda4 (plain) (blame)
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*
 * This file is part of the MicroPython project, http://micropython.org/
 *
 * The MIT License (MIT)
 *
 * Copyright (c) 2019 Damien P. George
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
#ifndef MICROPY_INCLUDED_STM32WBXX_HAL_CONF_BASE_H
#define MICROPY_INCLUDED_STM32WBXX_HAL_CONF_BASE_H

// Enable various HAL modules
#define HAL_MODULE_ENABLED
#define HAL_ADC_MODULE_ENABLED
#define HAL_CORTEX_MODULE_ENABLED
#define HAL_DMA_MODULE_ENABLED
#define HAL_FLASH_MODULE_ENABLED
#define HAL_GPIO_MODULE_ENABLED
#define HAL_I2C_MODULE_ENABLED
#define HAL_PCD_MODULE_ENABLED
#define HAL_PWR_MODULE_ENABLED
#define HAL_RCC_MODULE_ENABLED
#define HAL_RTC_MODULE_ENABLED
#define HAL_SPI_MODULE_ENABLED
#define HAL_TIM_MODULE_ENABLED
#define HAL_UART_MODULE_ENABLED
#define HAL_USART_MODULE_ENABLED

// Oscillator values in Hz
#define MSI_VALUE   (4000000)

// SysTick has the highest priority
#define TICK_INT_PRIORITY (0x00)

// Miscellaneous HAL settings
#define DATA_CACHE_ENABLE           1
#define INSTRUCTION_CACHE_ENABLE    1
#define PREFETCH_ENABLE             0
#define USE_SPI_CRC                 0
#define USE_RTOS                    0

// Include various HAL modules for convenience
#include "stm32wbxx_hal_dma.h"
#include "stm32wbxx_hal_adc.h"
#include "stm32wbxx_hal_cortex.h"
#include "stm32wbxx_hal_flash.h"
#include "stm32wbxx_hal_gpio.h"
#include "stm32wbxx_hal_i2c.h"
#include "stm32wbxx_hal_pcd.h"
#include "stm32wbxx_hal_pwr.h"
#include "stm32wbxx_hal_rcc.h"
#include "stm32wbxx_hal_rtc.h"
#include "stm32wbxx_hal_spi.h"
#include "stm32wbxx_hal_tim.h"
#include "stm32wbxx_hal_uart.h"
#include "stm32wbxx_hal_usart.h"
#include "stm32wbxx_ll_adc.h"
#include "stm32wbxx_ll_hsem.h"
#include "stm32wbxx_ll_lpuart.h"
#include "stm32wbxx_ll_rtc.h"
#include "stm32wbxx_ll_usart.h"

// HAL parameter assertions are disabled
#define assert_param(expr) ((void)0)

// Hardware Semaphores - ref: AN5289

// Used to prevent conflicts after standby / sleep.
// Each CPUs takes this semaphore at standby wakeup until conflicting elements are restored.
// Note: this is used in WB55 reference examples, but not listed in AN5289 Rev 6
#define CFG_HW_PWR_STANDBY_SEMID                10

// Ensures that CPU2 does not update the BLE persistent data in SRAM2 when CPU1 is reading them
#define CFG_HW_THREAD_NVM_SRAM_SEMID            9

// Ensures that CPU2 does not update the Thread persistent data in SRAM2 when CPU1 is reading them
#define CFG_HW_BLE_NVM_SRAM_SEMID               8

// Used by CPU2 to prevent CPU1 from writing/erasing data in Flash memory
#define CFG_HW_BLOCK_FLASH_REQ_BY_CPU2_SEMID    7

// Used by CPU1 to prevent CPU2 from writing/erasing data in Flash memory
#define CFG_HW_BLOCK_FLASH_REQ_BY_CPU1_SEMID    6

// Used to manage the CLK48 clock configuration (RCC_CRRCR, RCC_CCIPR)
#define CFG_HW_CLK48_CONFIG_SEMID               5

// Used to manage the entry Stop Mode procedure
#define CFG_HW_ENTRY_STOP_MODE_SEMID            4

// Used to access the RCC (RCC_CR, RCC_EXTCFGR, RCC_CFGR, RCC_SMPSCR)
#define CFG_HW_RCC_SEMID                        3

// Used to access the FLASH (all registers)
#define CFG_HW_FLASH_SEMID                      2

// Used to access the PKA (all registers)
#define CFG_HW_PKA_SEMID                        1

// Used to access the RNG (all registers)
#define CFG_HW_RNG_SEMID                        0

#endif // MICROPY_INCLUDED_STM32WBXX_HAL_CONF_BASE_H