diff options
Diffstat (limited to 'os/hal/platforms')
-rw-r--r-- | os/hal/platforms/AT91SAM7/spi_lld.h | 3 | ||||
-rw-r--r-- | os/hal/platforms/LPC11xx/spi_lld.h | 3 | ||||
-rw-r--r-- | os/hal/platforms/LPC13xx/spi_lld.h | 3 | ||||
-rw-r--r-- | os/hal/platforms/LPC214x/spi_lld.h | 3 | ||||
-rw-r--r-- | os/hal/platforms/STM32/adc_lld.h | 3 | ||||
-rw-r--r-- | os/hal/platforms/STM32/spi_lld.h | 3 | ||||
-rw-r--r-- | os/hal/platforms/STM8S/spi_lld.h | 3 |
7 files changed, 0 insertions, 21 deletions
diff --git a/os/hal/platforms/AT91SAM7/spi_lld.h b/os/hal/platforms/AT91SAM7/spi_lld.h index 6243e66fa..3b0bfaaba 100644 --- a/os/hal/platforms/AT91SAM7/spi_lld.h +++ b/os/hal/platforms/AT91SAM7/spi_lld.h @@ -126,9 +126,6 @@ typedef void (*spicallback_t)(SPIDriver *spip); typedef struct {
/**
* @brief Operation complete callback or @p NULL.
- * @note In order to use synchronous functions this field must be set to
- * @p NULL, callbacks and synchronous operations are mutually
- * exclusive.
*/
spicallback_t spc_endcb;
/* End of the mandatory fields.*/
diff --git a/os/hal/platforms/LPC11xx/spi_lld.h b/os/hal/platforms/LPC11xx/spi_lld.h index c7af31697..64f87c679 100644 --- a/os/hal/platforms/LPC11xx/spi_lld.h +++ b/os/hal/platforms/LPC11xx/spi_lld.h @@ -227,9 +227,6 @@ typedef void (*spicallback_t)(SPIDriver *spip); typedef struct {
/**
* @brief Operation complete callback or @p NULL.
- * @note In order to use synchronous functions this field must be set to
- * @p NULL, callbacks and synchronous operations are mutually
- * exclusive.
*/
spicallback_t spc_endcb;
/* End of the mandatory fields.*/
diff --git a/os/hal/platforms/LPC13xx/spi_lld.h b/os/hal/platforms/LPC13xx/spi_lld.h index bf94a824e..63a233f18 100644 --- a/os/hal/platforms/LPC13xx/spi_lld.h +++ b/os/hal/platforms/LPC13xx/spi_lld.h @@ -227,9 +227,6 @@ typedef void (*spicallback_t)(SPIDriver *spip); typedef struct {
/**
* @brief Operation complete callback or @p NULL.
- * @note In order to use synchronous functions this field must be set to
- * @p NULL, callbacks and synchronous operations are mutually
- * exclusive.
*/
spicallback_t spc_endcb;
/* End of the mandatory fields.*/
diff --git a/os/hal/platforms/LPC214x/spi_lld.h b/os/hal/platforms/LPC214x/spi_lld.h index 5f5d45823..50226cf4a 100644 --- a/os/hal/platforms/LPC214x/spi_lld.h +++ b/os/hal/platforms/LPC214x/spi_lld.h @@ -98,9 +98,6 @@ typedef void (*spicallback_t)(SPIDriver *spip); typedef struct {
/**
* @brief Operation complete callback or @p NULL.
- * @note In order to use synchronous functions this field must be set to
- * @p NULL, callbacks and synchronous operations are mutually
- * exclusive.
*/
spicallback_t spc_endcb;
/* End of the mandatory fields.*/
diff --git a/os/hal/platforms/STM32/adc_lld.h b/os/hal/platforms/STM32/adc_lld.h index c6ba26c05..0850b62f4 100644 --- a/os/hal/platforms/STM32/adc_lld.h +++ b/os/hal/platforms/STM32/adc_lld.h @@ -161,9 +161,6 @@ typedef struct { adc_channels_num_t acg_num_channels;
/**
* @brief Callback function associated to the group or @p NULL.
- * @note In order to use synchronous functions this field must be set to
- * @p NULL, callbacks and synchronous operations are mutually
- * exclusive.
*/
adccallback_t acg_endcb;
/* End of the mandatory fields.*/
diff --git a/os/hal/platforms/STM32/spi_lld.h b/os/hal/platforms/STM32/spi_lld.h index d46035ec0..9e29c5d68 100644 --- a/os/hal/platforms/STM32/spi_lld.h +++ b/os/hal/platforms/STM32/spi_lld.h @@ -186,9 +186,6 @@ typedef void (*spicallback_t)(SPIDriver *spip); typedef struct {
/**
* @brief Operation complete callback or @p NULL.
- * @note In order to use synchronous functions this field must be set to
- * @p NULL, callbacks and synchronous operations are mutually
- * exclusive.
*/
spicallback_t spc_endcb;
/* End of the mandatory fields.*/
diff --git a/os/hal/platforms/STM8S/spi_lld.h b/os/hal/platforms/STM8S/spi_lld.h index e4a963d67..cbcd2fd62 100644 --- a/os/hal/platforms/STM8S/spi_lld.h +++ b/os/hal/platforms/STM8S/spi_lld.h @@ -86,9 +86,6 @@ typedef void (*spicallback_t)(SPIDriver *spip); typedef struct {
/**
* @brief Operation complete callback or @p NULL.
- * @note In order to use synchronous functions this field must be set to
- * @p NULL, callbacks and synchronous operations are mutually
- * exclusive.
*/
spicallback_t spc_endcb;
/* End of the mandatory fields.*/
|