Updated ADC diagram and documentation.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6888 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
3aa8654e3a
commit
9b7b88dbe9
|
@ -54,7 +54,7 @@
|
||||||
stop -> stop [label="\nadcStop()"];
|
stop -> stop [label="\nadcStop()"];
|
||||||
ready -> active [label="\nadcStartConversion() (async)\nadcConvert() (sync)"];
|
ready -> active [label="\nadcStartConversion() (async)\nadcConvert() (sync)"];
|
||||||
active -> ready [label="\nadcStopConversion()\nsync return"];
|
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 -> complete [label="\n\nasync callback (full buffer)\n>end_cb<"];
|
||||||
active -> error [label="\n\nasync callback (error)\n>error_cb<"];
|
active -> error [label="\n\nasync callback (error)\n>error_cb<"];
|
||||||
complete -> active [label="\nadcStartConversionI()\nthen\ncallback return"];
|
complete -> active [label="\nadcStartConversionI()\nthen\ncallback return"];
|
||||||
|
@ -85,7 +85,7 @@
|
||||||
stop -> stop [label="\nadcStop()"];
|
stop -> stop [label="\nadcStop()"];
|
||||||
ready -> active [label="\nadcStartConversion() (async)\nadcConvert() (sync)"];
|
ready -> active [label="\nadcStartConversion() (async)\nadcConvert() (sync)"];
|
||||||
active -> ready [label="\nadcStopConversion()\nsync return"];
|
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 -> complete [label="\n\nasync callback (full buffer)\n>end_cb<"];
|
||||||
active -> error [label="\n\nasync callback (error)\n>error_cb<"];
|
active -> error [label="\n\nasync callback (error)\n>error_cb<"];
|
||||||
complete -> active [label="\nadcStartConversionI()\nthen\ncallback return"];
|
complete -> active [label="\nadcStartConversionI()\nthen\ncallback return"];
|
||||||
|
@ -131,8 +131,7 @@
|
||||||
* The driver is able to invoke callbacks during the conversion process. A
|
* The driver is able to invoke callbacks during the conversion process. A
|
||||||
* callback is invoked when the operation has been completed or, in circular
|
* 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
|
* 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
|
* circular mode a callback is also invoked when the buffer is half filled.<br>
|
||||||
* half filled.<br>
|
|
||||||
* The "half filled" and "filled" callbacks in circular mode allow to
|
* The "half filled" and "filled" callbacks in circular mode allow to
|
||||||
* implement "streaming processing" of the sampled data, while the driver is
|
* implement "streaming processing" of the sampled data, while the driver is
|
||||||
* busy filling one half of the buffer the application can process the
|
* busy filling one half of the buffer the application can process the
|
||||||
|
|
Loading…
Reference in New Issue