Skip to content

Commit 1a27cc2

Browse files
committed
unicore-mx: fixed namespace for rcc_hse_25mhz_3v3
1 parent 120b18e commit 1a27cc2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

examples/stm32/f7/stm32f7-discovery/fancyblink/fancyblink.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
static void clock_setup(void)
2525
{
26-
rcc_clock_setup_hse_3v3(&hse_25mhz_3v3);
26+
rcc_clock_setup_hse_3v3(&rcc_hse_25mhz_3v3);
2727
rcc_periph_clock_enable(RCC_GPIOI);
2828
}
2929

examples/stm32/f7/stm32f7-discovery/lcd-demo/clock.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ uint32_t mtime(void)
6363
void clock_setup(void)
6464
{
6565
/* Base board frequency, set to 216MHz */
66-
rcc_clock_setup_hse_3v3(&hse_25mhz_3v3);
66+
rcc_clock_setup_hse_3v3(&rcc_hse_25mhz_3v3);
6767

6868
/* clock rate / 216000 to get 1mS interrupt rate */
6969
systick_set_reload(216000);

examples/stm32/f7/stm32f7-discovery/lcd-ram-demo/clock.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ uint32_t mtime(void)
6363
void clock_setup(void)
6464
{
6565
/* Base board frequency, set to 216MHz */
66-
rcc_clock_setup_hse_3v3(&hse_25mhz_3v3);
66+
rcc_clock_setup_hse_3v3(&rcc_hse_25mhz_3v3);
6767

6868
/* clock rate / 216000 to get 1mS interrupt rate */
6969
systick_set_reload(216000);

examples/stm32/f7/stm32f7-discovery/usart_console/clock.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ uint32_t mtime(void)
6363
void clock_setup(void)
6464
{
6565
/* Base board frequency, set to 216MHz */
66-
rcc_clock_setup_hse_3v3(&hse_25mhz_3v3);
66+
rcc_clock_setup_hse_3v3(&rcc_hse_25mhz_3v3);
6767

6868
/* clock rate / 216000 to get 1mS interrupt rate */
6969
systick_set_reload(216000);

0 commit comments

Comments
 (0)