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.
45 lines
1.5 KiB
45 lines
1.5 KiB
/********************************** (C) COPYRIGHT ******************************* |
|
* File Name : ch32x035_misc.h |
|
* Author : WCH |
|
* Version : V1.0.0 |
|
* Date : 2023/04/06 |
|
* Description : This file contains all the functions prototypes for the |
|
* miscellaneous firmware library functions. |
|
********************************************************************************* |
|
* Copyright (c) 2021 Nanjing Qinheng Microelectronics Co., Ltd. |
|
* Attention: This software (modified or not) and binary are used for |
|
* microcontroller manufactured by Nanjing Qinheng Microelectronics. |
|
*******************************************************************************/ |
|
#ifndef __CH32X035_MISC_H |
|
#define __CH32X035_MISC_H |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
#include "ch32x035.h" |
|
|
|
/* NVIC Init Structure definition */ |
|
typedef struct |
|
{ |
|
uint8_t NVIC_IRQChannel; |
|
uint8_t NVIC_IRQChannelPreemptionPriority; |
|
uint8_t NVIC_IRQChannelSubPriority; |
|
FunctionalState NVIC_IRQChannelCmd; |
|
} NVIC_InitTypeDef; |
|
|
|
/* Preemption_Priority_Group */ |
|
#define NVIC_PriorityGroup_0 ((uint32_t)0x00) |
|
#define NVIC_PriorityGroup_1 ((uint32_t)0x01) |
|
#define NVIC_PriorityGroup_2 ((uint32_t)0x02) |
|
#define NVIC_PriorityGroup_3 ((uint32_t)0x03) |
|
#define NVIC_PriorityGroup_4 ((uint32_t)0x04) |
|
|
|
void NVIC_PriorityGroupConfig(uint32_t NVIC_PriorityGroup); |
|
void NVIC_Init(NVIC_InitTypeDef *NVIC_InitStruct); |
|
|
|
#ifdef __cplusplus |
|
} |
|
#endif |
|
|
|
#endif
|
|
|