time.h 262 B

12345678910
  1. #ifndef __TIME_H
  2. #define __TIME_H
  3. #include "stm32f4xx.h"
  4. void TIM_Mod_Config(void(*ClockCmd)(uint32_t, FunctionalState), u32 RCC_APBnPeriphn,TIM_TypeDef *TIM, u16 psc, u16 per, u8 pre, u8 sub);
  5. void TIM_NVIC_Config(u8 NVIC_IRQChannel, u8 pre, u8 sub);
  6. #endif