STM32H: drivers: renamed pll sources to "rcc"
This commit is contained in:
parent
e9b517abbc
commit
e66125fafc
|
|
@ -280,7 +280,7 @@ mk22fn512_def += miosix_cm4f_def
|
||||||
stm32h743_src = ['platform/mcu/STM32H7xx/boot/startup.cpp',
|
stm32h743_src = ['platform/mcu/STM32H7xx/boot/startup.cpp',
|
||||||
'platform/mcu/STM32H7xx/boot/bsp.cpp',
|
'platform/mcu/STM32H7xx/boot/bsp.cpp',
|
||||||
'platform/mcu/STM32H7xx/boot/libc_integration.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/mcu/STM32H7xx/drivers/delays.cpp',
|
||||||
'platform/drivers/GPIO/gpio_stm32.c',
|
'platform/drivers/GPIO/gpio_stm32.c',
|
||||||
'platform/drivers/ADC/adc_stm32h7.c',
|
'platform/drivers/ADC/adc_stm32h7.c',
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/> *
|
* along with this program; if not, see <http://www.gnu.org/licenses/> *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include <pll.h>
|
#include <rcc.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stm32h7xx.h>
|
#include <stm32h7xx.h>
|
||||||
#include "spi_stm32.h"
|
#include "spi_stm32.h"
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
#include "interfaces/arch_registers.h"
|
#include "interfaces/arch_registers.h"
|
||||||
#include "core/interrupts.h" //For the unexpected interrupt call
|
#include "core/interrupts.h" //For the unexpected interrupt call
|
||||||
#include "core/cache_cortexMx.h"
|
#include "core/cache_cortexMx.h"
|
||||||
#include "drivers/pll.h"
|
#include "drivers/rcc.h"
|
||||||
#include "kernel/stage_2_boot.h"
|
#include "kernel/stage_2_boot.h"
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include <stm32h7xx.h>
|
#include <stm32h7xx.h>
|
||||||
#include "pll.h"
|
#include "rcc.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Clock tree configuration:
|
* Clock tree configuration:
|
||||||
|
|
@ -26,8 +26,8 @@
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/> *
|
* along with this program; if not, see <http://www.gnu.org/licenses/> *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef PLL_H
|
#ifndef RCC_H
|
||||||
#define PLL_H
|
#define RCC_H
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
|
|
@ -65,4 +65,4 @@ uint32_t getBusClock(const uint8_t bus);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif //PLL_H
|
#endif //RCC_H
|
||||||
Loading…
Reference in New Issue