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

ref: 0207e4272a9fc2ff85aaeb684b8a04521b99f4e5 stm32h747i-disco-usb-image-viewer/src/delay.c -rw-r--r-- 176 bytes
0207e427 — Rutherther chore: fix packing on x86_64 1 year, 30 days ago
                                                                                
1
2
3
4
5
6
7
#include "delay.h"
#include <stm32h7xx.h>

void systick_configure() {
  SysTick->LOAD = SYSTICK_LOAD;
  SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk | SysTick_CTRL_ENABLE_Msk;
}