git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9070 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
Giovanni Di Sirio 2016-03-11 11:26:13 +00:00
parent b77ca0d67a
commit 8f30e605e6
2 changed files with 3 additions and 2 deletions

View File

@ -175,7 +175,7 @@ void adcStartConversionI(ADCDriver *adcp,
osalDbgCheckClassI();
osalDbgCheck((adcp != NULL) && (grpp != NULL) && (samples != NULL) &&
((depth == 1U) || ((depth & 1U) == 0U)));
(depth > 0U) && ((depth == 1U) || ((depth & 1U) == 0U)));
osalDbgAssert((adcp->state == ADC_READY) ||
(adcp->state == ADC_COMPLETE) ||
(adcp->state == ADC_ERROR),

View File

@ -2,7 +2,7 @@
*** Files Organization ***
*****************************************************************************
--{root} - ChibiOS/RT directory.
--{root} - ChibiOS directory.
+--readme.txt - This file.
+--documentation.html - Shortcut to the web documentation page.
+--license.txt - GPL license text.
@ -79,6 +79,7 @@
*****************************************************************************
*** Next ***
- RT: Added a NASA-OSAL API emulator over the RT kernel.
- RT: Added RT-STM32L476-DISCOVERY demo.
- HAL: Added more STM32L4xx testhal demos.
- HAL: Updated all STM32F476 mcuconf.h files.