stm32_freertos_template/hw/systick.h

12 lines
227 B
C

#ifndef __SYSTICK_H
#define __SYSTICK_H
#include <stdint.h>
//------makra---------//
#define SYSTICK_Init(X) (SysTick_Config(SystemCoreClock / 1000*(X)))
//-----funkcje-------//
void Wait(uint32_t period);
#endif