~ruther/stm32h747i-disco-usb-image-viewer

ref: 9c2e500adbbb5a63f7db7cab78dcbdbd9567813d stm32h747i-disco-usb-image-viewer/firmware/include/delay.h -rw-r--r-- 1.3 KiB
9c2e500a — Rutherther docs: add missing docs 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#ifndef DELAY_H
#define DELAY_H

#include <stdint.h>
#include <stm32h7xx.h>

#define SYSCLK_HZ ((uint32_t)64000000UL)
/* #define SYSCLK_HZ       ((uint32_t)480000000UL) */
#define D1CPRE_DIVIDER  ((uint32_t)1UL)
#define HCLK_DIVIDER    ((uint32_t)2UL)

#define D1CPRE_HZ       (SYSCLK_HZ / D1CPRE_DIVIDER)
#define HCLK_HZ         (D1CPRE_HZ / HCLK_DIVIDER)
#define SYSTICK_HZ      (D1CPRE_HZ / 8)

#define HCLK_FREQ_HZ    ((uint32_t)SYSTEM_CLOCK / AHB_DIVIDER / HCLK_DIVIDER)

/**
 * @brief Wait for given amount of micro seconds.
 * @param[in] us The time in micro seconds to wait for
 */
inline void __attribute__((always_inline)) delay_us(uint32_t us) {
  uint64_t max_load = 0xFFFFFF;
  uint64_t total_load = us * (SYSTICK_HZ / 1000000);

  while (total_load > 0) {
    uint64_t curr_load = total_load;
    if (total_load > max_load) {
      curr_load = max_load;
    }
    SysTick->LOAD = curr_load;

    SysTick->VAL = 0;
    SysTick->CTRL = SysTick_CTRL_ENABLE_Msk; // Enable

    while (!(SysTick->CTRL & SysTick_CTRL_COUNTFLAG_Msk));

    total_load -= curr_load;
    SysTick->CTRL = 0; // Disable
  }
}


/**
 * @brief Wait for given amount of milli seconds.
 * @param[in] us The time in milli seconds to wait for
 */
inline void __attribute__((always_inline)) delay_ms(uint32_t ms) {
  for (uint32_t i = 0; i < ms; i++) {
    delay_us(1000);
  }
}

#endif // DELAY_H
Do not follow this link