Fixed Bug #794
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_16.1.x@9928 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
dd512e0fbd
commit
52d62a8955
|
@ -53,7 +53,6 @@ static icu_registers_t regs_table[]=
|
|||
#endif
|
||||
};
|
||||
|
||||
|
||||
/*===========================================================================*/
|
||||
/* Driver exported variables. */
|
||||
/*===========================================================================*/
|
||||
|
|
|
@ -227,7 +227,6 @@ typedef volatile avr_gpio_registers_t * ioportid_t;
|
|||
#define IOPORTSPI1 ((volatile avr_gpio_registers_t *)&PIN_SPI1)
|
||||
#endif
|
||||
|
||||
|
||||
/*===========================================================================*/
|
||||
/* Implementation, some of the following macros could be implemented as */
|
||||
/* functions, if so please put them in pal_lld.c. */
|
||||
|
|
|
@ -560,7 +560,6 @@ void pwm_lld_disable_channel_notification(PWMDriver *pwmp,
|
|||
*regs_table[i].timsk &= ~(1 << (channel + 1));
|
||||
}
|
||||
|
||||
|
||||
#endif /* HAL_USE_PWM */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -214,7 +214,6 @@ extern "C" {
|
|||
uint8_t spi_lld_polled_exchange(SPIDriver *spip, uint8_t frame);
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -96,7 +96,6 @@ typedef struct
|
|||
*/
|
||||
#define PAL_WHOLE_PORT ((ioportmask_t)0xFFFFFFFF)
|
||||
|
||||
|
||||
/*===========================================================================*/
|
||||
/* I/O Ports Identifiers. */
|
||||
/*===========================================================================*/
|
||||
|
|
|
@ -280,7 +280,6 @@ void pwm_lld_stop(PWMDriver *pwmp) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @brief Enables a PWM channel.
|
||||
* @pre The PWM unit must have been activated using @p pwmStart().
|
||||
|
|
|
@ -332,7 +332,6 @@ struct ADCDriver {
|
|||
/* Driver macros. */
|
||||
/*===========================================================================*/
|
||||
|
||||
|
||||
/*===========================================================================*/
|
||||
/* External declarations. */
|
||||
/*===========================================================================*/
|
||||
|
|
|
@ -57,7 +57,6 @@ static union {
|
|||
} u;
|
||||
#endif /* STM32_SDC_SDIO_UNALIGNED_SUPPORT */
|
||||
|
||||
|
||||
/**
|
||||
* @brief SDIO default configuration.
|
||||
*/
|
||||
|
|
|
@ -88,7 +88,6 @@ static union {
|
|||
} u;
|
||||
#endif /* STM32_SDC_SDMMC_UNALIGNED_SUPPORT */
|
||||
|
||||
|
||||
/**
|
||||
* @brief SDIO default configuration.
|
||||
*/
|
||||
|
|
|
@ -307,7 +307,6 @@
|
|||
#define STM32_HAS_DAC2_CH1 FALSE
|
||||
#define STM32_HAS_DAC2_CH2 FALSE
|
||||
|
||||
|
||||
/* DMA attributes.*/
|
||||
#define STM32_ADVANCED_DMA TRUE
|
||||
#define STM32_DMA_SUPPORTS_CSELR FALSE
|
||||
|
|
|
@ -469,7 +469,6 @@
|
|||
#define rccResetPWRInterface() rccResetAPB1(RCC_APB1RSTR_PWRRST)
|
||||
/** @} */
|
||||
|
||||
|
||||
/**
|
||||
* @name CAN peripherals specific RCC operations
|
||||
* @{
|
||||
|
|
|
@ -469,7 +469,6 @@
|
|||
#define rccResetPWRInterface() rccResetAPB1(RCC_APB1RSTR_PWRRST)
|
||||
/** @} */
|
||||
|
||||
|
||||
/**
|
||||
* @name CAN peripherals specific RCC operations
|
||||
* @{
|
||||
|
|
|
@ -2072,7 +2072,6 @@
|
|||
#define STM32_MSI_FLASHBITS FLASH_ACR_LATENCY_4WS
|
||||
#endif
|
||||
|
||||
|
||||
/*===========================================================================*/
|
||||
/* Driver data structures and types. */
|
||||
/*===========================================================================*/
|
||||
|
|
|
@ -267,7 +267,6 @@
|
|||
}
|
||||
/** @} */
|
||||
|
||||
|
||||
/**
|
||||
* @name ADC peripherals specific RCC operations
|
||||
* @{
|
||||
|
@ -413,7 +412,6 @@
|
|||
#define rccResetPWRInterface() rccResetAPB1R1(RCC_APB1RSTR1_PWRRST)
|
||||
/** @} */
|
||||
|
||||
|
||||
/**
|
||||
* @name CAN peripherals specific RCC operations
|
||||
* @{
|
||||
|
|
|
@ -73,7 +73,8 @@
|
|||
*****************************************************************************
|
||||
|
||||
*** 16.1.6 ***
|
||||
- RT: Fixed double empty lines (bug #793).
|
||||
- HAL: Fixed double empty lines in HAL (bug #794).
|
||||
- RT: Fixed double empty lines in RT (bug #793).
|
||||
- HAL: Fixed wrong entries in STM32L4 registry (bug #792).
|
||||
- HAL: Fixed missing ARPE bit in CR1 initialization on STM32 GPT driver
|
||||
(bug #791).
|
||||
|
|
Loading…
Reference in New Issue