~ruther/uni-mam-arm

ref: e148ef785c328610b9400a6d6edaf5df7c9d4af0 uni-mam-arm/arm04/src/delay.c -rw-r--r-- 196 bytes
e148ef78 — Rutherther feat(arm04): rounding 4 months ago
                                                                                
1
2
3
4
5
6
7
8
#include "delay.h"
#include <stdint.h>
#include <stm32f4xx.h>

void systick_configure() {
  SysTick->LOAD = SYSTICK_LOAD;
  SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk | SysTick_CTRL_ENABLE_Msk;
}
Do not follow this link