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

ref: 02e7e4dfbf77f0e6aac3abd7ab75632233c347e0 stm32h747i-disco-usb-image-viewer/src/delay.c -rw-r--r-- 178 bytes
02e7e4df — Rutherther docs: add documentation comments to most functions 1 year, 1 month ago
                                                                                
1
2
3
4
5
6
7
#include "delay.h"
#include <stm32h747xx.h>

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