#ifndef __RCC_NVIC_SYSTICK_H__ #define __RCC_NVIC_SYSTICK_H__ #include "main.h" #define DECAIRQ_EXTI_IRQn EXTI2_IRQn void Rcc_Init(void); void Nvic_Init(void); int Systick_Init(void); void delay_us(uint32_t nTimer); void delay_ms(uint32_t nTimer); void RTC_Configuration(uint16_t interval); void TIM3_Int_Init(void); int RCC_Configuration(void); #endif