You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
1.5 KiB

//#############################################################################################################################################################################################################
#ifndef _INC_SYSTEM_CUSTOM_H_
#define _INC_SYSTEM_CUSTOM_H_
//-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
#include <inttypes.h>
#include <avr/interrupt.h>
//-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
uint32_t SystemSystickCounter;
//-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
void System_InitSysTick(void);
void System_SystickTimerStart(void);
void System_SystickTimerStop(void);
//-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
#endif // #ifndef _INC_SYSTEM_CUSTOM_H_
//#############################################################################################################################################################################################################