NVIC.h 164 B

12345678910111213
  1. #ifndef __NVIC_AS_H_
  2. #define __NVIC_AS_H_
  3. #include "main.h"
  4. typedef struct {
  5. void (* Init)(void);
  6. } NVICClassStruct;
  7. extern NVICClassStruct NVICClass;
  8. #endif