Changed name of functions

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10390 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
edolomb 2017-08-11 09:04:26 +00:00
parent c4c7e4115e
commit 13e3e2bd8a
2 changed files with 16 additions and 20 deletions

View File

@ -15,10 +15,10 @@
*/
/**
* @file common/ARMCAx/aic.c
* @brief Cortex-Ax AIC support code.
* @file SAMA5D2x/aic.c
* @brief SAMA AIC support code.
*
* @addtogroup COMMON_ARMCAx_AIC
* @addtogroup COMMON_SAMA5D2x_AIC
* @{
*/
@ -78,7 +78,7 @@ void aicInit(void) {
* @param[in] prior priority level of the source selected
* by INTSEL except FIQ source (source 0).
*/
void aicConfigureIt(uint32_t source, uint8_t prior) {
void aicConfigureInt(uint32_t source, uint8_t prior) {
Aic *aic = SAIC;
@ -137,7 +137,7 @@ void aicSetSpuriousVector(bool (*handler)(void)) {
*
* @param[in] source interrupt source to enable
*/
void aicEnableIt(uint32_t source) {
void aicEnableInt(uint32_t source) {
Aic *aic = SAIC;
@ -150,7 +150,7 @@ void aicEnableIt(uint32_t source) {
*
* @param[in] source interrupt source to disable
*/
void aicDisableIt(uint32_t source) {
void aicDisableInt(uint32_t source) {
Aic *aic = SAIC;
@ -163,7 +163,7 @@ void aicDisableIt(uint32_t source) {
*
* @param[in] source interrupt source to Clear
*/
void aicClearIt(uint32_t source) {
void aicClearInt(uint32_t source) {
Aic *aic = SAIC;
@ -176,7 +176,7 @@ void aicClearIt(uint32_t source) {
*
* @param[in] source interrupt source to Set
*/
void aicSetIt(uint32_t source) {
void aicSetInt(uint32_t source) {
Aic *aic = SAIC;

View File

@ -15,10 +15,10 @@
*/
/**
* @file common/ARMCMAx/aic.h
* @brief Cortex-MAx AIC support macros and structures.
* @file SAMA5D2x/aic.h
* @brief SAMA AIC support macros and structures.
*
* @addtogroup COMMON_ARMCMAx_AIC
* @addtogroup COMMON_SAMA5D2x_AIC
* @{
*/
@ -45,10 +45,6 @@
/* Driver macros. */
/*===========================================================================*/
/**
* @brief Priority level to priority mask conversion macro.
*/
/*===========================================================================*/
/* External declarations. */
/*===========================================================================*/
@ -57,13 +53,13 @@
extern "C" {
#endif
void aicInit(void);
void aicConfigureIt(uint32_t source, uint8_t prior);
void aicConfigureInt(uint32_t source, uint8_t prior);
void aicSetSourceVector(uint32_t source, bool (*handler)(void));
void aicSetSpuriousVector(bool (*handler)(void));
void aicEnableIt(uint32_t source);
void aicDisableIt(uint32_t source);
void aicClearIt(uint32_t source);
void aicSetIt(uint32_t source);
void aicEnableInt(uint32_t source);
void aicDisableInt(uint32_t source);
void aicClearInt(uint32_t source);
void aicSetInt(uint32_t source);
#ifdef __cplusplus
}
#endif