STM32H: drivers: renamed pll sources to "rcc"

This commit is contained in:
Silvano Seva 2025-08-12 18:53:08 +02:00
parent e9b517abbc
commit e66125fafc
5 changed files with 7 additions and 7 deletions

View File

@ -280,7 +280,7 @@ mk22fn512_def += miosix_cm4f_def
stm32h743_src = ['platform/mcu/STM32H7xx/boot/startup.cpp',
'platform/mcu/STM32H7xx/boot/bsp.cpp',
'platform/mcu/STM32H7xx/boot/libc_integration.cpp',
'platform/mcu/STM32H7xx/drivers/pll.cpp',
'platform/mcu/STM32H7xx/drivers/rcc.cpp',
'platform/mcu/STM32H7xx/drivers/delays.cpp',
'platform/drivers/GPIO/gpio_stm32.c',
'platform/drivers/ADC/adc_stm32h7.c',

View File

@ -15,7 +15,7 @@
* along with this program; if not, see <http://www.gnu.org/licenses/> *
***************************************************************************/
#include <pll.h>
#include <rcc.h>
#include <errno.h>
#include <stm32h7xx.h>
#include "spi_stm32.h"

View File

@ -2,7 +2,7 @@
#include "interfaces/arch_registers.h"
#include "core/interrupts.h" //For the unexpected interrupt call
#include "core/cache_cortexMx.h"
#include "drivers/pll.h"
#include "drivers/rcc.h"
#include "kernel/stage_2_boot.h"
#include <string.h>

View File

@ -27,7 +27,7 @@
***************************************************************************/
#include <stm32h7xx.h>
#include "pll.h"
#include "rcc.h"
/**
* Clock tree configuration:

View File

@ -26,8 +26,8 @@
* along with this program; if not, see <http://www.gnu.org/licenses/> *
***************************************************************************/
#ifndef PLL_H
#define PLL_H
#ifndef RCC_H
#define RCC_H
#include <stdint.h>
@ -65,4 +65,4 @@ uint32_t getBusClock(const uint8_t bus);
}
#endif
#endif //PLL_H
#endif //RCC_H