This repository has been archived on 2024-11-23. You can view files and clone it, but cannot push or open issues or pull requests.
SSTV-Decoder/src/derivative.c

10 lines
203 B
C
Raw Normal View History

2023-04-17 21:56:42 +08:00
#include "derivative.h"
uint32_t CORCLK = CORCLK_DEFAULT;
uint32_t BUSCLK = BUSCLK_DEFAULT;
// ms count, volatile is important!!
volatile uint32_t ms_ticks;
void SysTick_Handler(void) { ms_ticks++; }