diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-04-26 10:05:37 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-04-26 10:05:37 +0000 |
commit | 9b7b88dbe922226c92d056ae04e2096ee734ad4d (patch) | |
tree | 3d8f27cf027c32f2f99f8d88cdd9225f4899ef7a | |
parent | 3aa8654e3a5533f54086ba1311b4feeafd9d7795 (diff) | |
download | ChibiOS-9b7b88dbe922226c92d056ae04e2096ee734ad4d.tar.gz ChibiOS-9b7b88dbe922226c92d056ae04e2096ee734ad4d.tar.bz2 ChibiOS-9b7b88dbe922226c92d056ae04e2096ee734ad4d.zip |
Updated ADC diagram and documentation.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6888 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/dox/adc.dox | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/os/hal/dox/adc.dox b/os/hal/dox/adc.dox index 02bb24ac6..8ac1cb556 100644 --- a/os/hal/dox/adc.dox +++ b/os/hal/dox/adc.dox @@ -54,7 +54,7 @@ stop -> stop [label="\nadcStop()"];
ready -> active [label="\nadcStartConversion() (async)\nadcConvert() (sync)"];
active -> ready [label="\nadcStopConversion()\nsync return"];
- active -> active [label="\nasync callback (half buffer)\nasync callback (full buffer circular)\n>acg_endcb<"];
+ active -> active [label="\nasync callback (half buffer, circular)\nasync callback (full buffer)\n>acg_endcb<"];
active -> complete [label="\n\nasync callback (full buffer)\n>end_cb<"];
active -> error [label="\n\nasync callback (error)\n>error_cb<"];
complete -> active [label="\nadcStartConversionI()\nthen\ncallback return"];
@@ -85,7 +85,7 @@ stop -> stop [label="\nadcStop()"];
ready -> active [label="\nadcStartConversion() (async)\nadcConvert() (sync)"];
active -> ready [label="\nadcStopConversion()\nsync return"];
- active -> active [label="\nasync callback (half buffer)\nasync callback (full buffer circular)\n>acg_endcb<"];
+ active -> active [label="\nasync callback (half buffer, circular)\nasync callback (full buffer)\n>acg_endcb<"];
active -> complete [label="\n\nasync callback (full buffer)\n>end_cb<"];
active -> error [label="\n\nasync callback (error)\n>error_cb<"];
complete -> active [label="\nadcStartConversionI()\nthen\ncallback return"];
@@ -131,8 +131,7 @@ * The driver is able to invoke callbacks during the conversion process. A
* callback is invoked when the operation has been completed or, in circular
* mode, when the buffer has been filled and the operation is restarted. In
- * linear and circular modes a callback is also invoked when the buffer is
- * half filled.<br>
+ * circular mode a callback is also invoked when the buffer is half filled.<br>
* The "half filled" and "filled" callbacks in circular mode allow to
* implement "streaming processing" of the sampled data, while the driver is
* busy filling one half of the buffer the application can process the
|