mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-19 22:35:23 +03:00
A few warnings in the SP lib suppressed.
This commit is contained in:
parent
6587081423
commit
32e0be9802
3 changed files with 7 additions and 0 deletions
|
@ -947,6 +947,8 @@ void ADC_AnalogWatchdog3SingleChannelConfig(ADC_TypeDef* ADCx, uint8_t ADC_Chann
|
|||
*/
|
||||
void ADC_TempSensorCmd(ADC_TypeDef* ADCx, FunctionalState NewState)
|
||||
{
|
||||
(void)(ADCx);
|
||||
|
||||
/* Check the parameters */
|
||||
assert_param(IS_FUNCTIONAL_STATE(NewState));
|
||||
|
||||
|
@ -1012,6 +1014,7 @@ void ADC_VrefintCmd(ADC_TypeDef* ADCx, FunctionalState NewState)
|
|||
*/
|
||||
void ADC_VbatCmd(ADC_TypeDef* ADCx, FunctionalState NewState)
|
||||
{
|
||||
(void)ADCx;
|
||||
/* Check the parameters */
|
||||
assert_param(IS_FUNCTIONAL_STATE(NewState));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue