git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8227 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2015-08-19 10:54:01 +00:00
parent 649c937cdb
commit f2f3d60519
2 changed files with 4 additions and 2 deletions

View File

@ -348,7 +348,7 @@ void dac_lld_put_channel(DACDriver *dacp,
}
break;
default:
chDbgAssert(false, "unexpected DAC mode");
osalDbgAssert(false, "unexpected DAC mode");
break;
}
}
@ -436,7 +436,7 @@ void dac_lld_start_conversion(DACDriver *dacp) {
break;
#endif
default:
chDbgAssert(false, "unexpected DAC mode");
osalDbgAssert(false, "unexpected DAC mode");
return;
}

View File

@ -95,6 +95,8 @@
- HAL: Introduced support for TIM21 and TIM22 in STM32 ST driver.
- HAL: Updated STM32F0xx headers to STM32CubeF0 version 1.3.0. Added support
for STM32F030xC, STM32F070x6, STM32F070xB devices.
- HAL: Fixed HAL to RT dependency in STM32 DAC driver (bug #631)(backported
to 3.0.2).
- HAL: Fixed problem with STM32 I2S driver restart (bug #630)(backported
to 3.0.2).
- HAL: Fixed STM32F3xx ADC driver uses US2RTC directly (bug #629)(backported