aboutsummaryrefslogtreecommitdiffstats
path: root/ChibiOS_20.3.2
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-01-23 14:25:04 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-01-23 14:25:04 -0500
commitec2e1fd5c6271bdf45ce22b3bb5cd3b690d92d5b (patch)
treeb00b4f56132b743a64d61dc4652dc1d88b0853fd /ChibiOS_20.3.2
parent716be4fc87412541fb1305c8592245a36104b584 (diff)
increase signal buffers; fix oversample
Diffstat (limited to 'ChibiOS_20.3.2')
-rw-r--r--ChibiOS_20.3.2/os/hal/ports/STM32/STM32H7xx/hal_lld.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ChibiOS_20.3.2/os/hal/ports/STM32/STM32H7xx/hal_lld.c b/ChibiOS_20.3.2/os/hal/ports/STM32/STM32H7xx/hal_lld.c
index e9ffb25..20992be 100644
--- a/ChibiOS_20.3.2/os/hal/ports/STM32/STM32H7xx/hal_lld.c
+++ b/ChibiOS_20.3.2/os/hal/ports/STM32/STM32H7xx/hal_lld.c
@@ -168,11 +168,14 @@ void hal_lld_init(void) {
/* MPU initialization.*/
#if (STM32_NOCACHE_SRAM1_SRAM2 == TRUE) || (STM32_NOCACHE_SRAM3 == TRUE) || \
- (STM32_NOCACHE_SRAM4 == TRUE)
+ (STM32_NOCACHE_ALLSRAM == TRUE)
{
uint32_t base, size;
-#if (STM32_NOCACHE_SRAM1_SRAM2 == TRUE) && (STM32_NOCACHE_SRAM3 == TRUE)
+#if (STM32_NOCACHE_ALLSRAM == TRUE)
+ base = 0x30000000U;
+ size = MPU_RASR_SIZE_256M;
+#elif (STM32_NOCACHE_SRAM1_SRAM2 == TRUE) && (STM32_NOCACHE_SRAM3 == TRUE)
base = 0x30000000U;
size = MPU_RASR_SIZE_512K;
#elif (STM32_NOCACHE_SRAM1_SRAM2 == TRUE) && (STM32_NOCACHE_SRAM3 == FALSE)
@@ -181,9 +184,6 @@ void hal_lld_init(void) {
#elif (STM32_NOCACHE_SRAM1_SRAM2 == FALSE) && (STM32_NOCACHE_SRAM3 == TRUE)
base = 0x30040000U;
size = MPU_RASR_SIZE_16K;
-#elif (STM32_NOCACHE_SRAM4 == TRUE)
- base = 0x38000000U;
- size = MPU_RASR_SIZE_16K;
#else
#error "invalid constants used in mcuconf.h"
#endif