~ruther/uni-mam-arm

ref: 415b8c65ff282fadc6bb5629c301448a8259dc5c uni-mam-arm/arm07/src/delay.c -rw-r--r-- 196 bytes
415b8c65 — Rutherther feat(arm07): add exti both edges interrupt function 3 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