diff options
| author | HiFiPHile <[email protected]> | 2026-09-02 15:22:07 +0200 |
|---|---|---|
| committer | HiFiPHile <[email protected]> | 2026-09-02 15:24:36 +0200 |
| commit | 1ff684a07ec5d80a89ba82276139a202288b7716 (patch) | |
| tree | 96aab26ac287e2e2e976b1187baa050338f25b45 /hw | |
| parent | 93545d0bfb90b48a33a08b8b12df21a886b7a338 (diff) | |
implement per channel volume control
Signed-off-by: HiFiPHile <[email protected]>
Diffstat (limited to 'hw')
| -rw-r--r-- | hw/bsp/stm32f7/boards/stm32f723disco/board.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/bsp/stm32f7/boards/stm32f723disco/board.h b/hw/bsp/stm32f7/boards/stm32f723disco/board.h index 698a1a230..78942b884 100644 --- a/hw/bsp/stm32f7/boards/stm32f723disco/board.h +++ b/hw/bsp/stm32f7/boards/stm32f723disco/board.h @@ -103,9 +103,9 @@ static inline void board_clock_init(void) { RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE; RCC_OscInitStruct.PLL.PLLM = HSE_VALUE / 1000000; - RCC_OscInitStruct.PLL.PLLN = 432; - RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2; - RCC_OscInitStruct.PLL.PLLQ = 9; + RCC_OscInitStruct.PLL.PLLN = 288; + RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV4; + RCC_OscInitStruct.PLL.PLLQ = 6; HAL_RCC_OscConfig(&RCC_OscInitStruct); /* Activate the OverDrive to reach the 216 MHz Frequency */ |
