formatting fixes

This commit is contained in:
Adam Feuer 2020-09-04 15:36:02 -07:00 committed by Matias N
parent 8cd8adb5d9
commit 7632b4d716
1 changed files with 4 additions and 9 deletions

View File

@ -179,12 +179,12 @@ code implements the necessary algorithms often helps one understand how the driv
in a header file that your code will use to operate on the registers. Refer to other driver header files for in a header file that your code will use to operate on the registers. Refer to other driver header files for
examples. examples.
`Logic analyzers <https://en.wikipedia.org/wiki/Logic_analyzer>`_ Logic Analyzers
----------------------------------------------------------------- ---------------
For drivers that involve input and output (I/O), especially that involve complex protocols like SD Cards, SPI, I2C, For drivers that involve input and output (I/O), especially that involve complex protocols like SD Cards, SPI, I2C,
etc., actually seeing the waveform that goes in and out the chip's pins is extremely helpful. Logic analyzers can etc., actually seeing the waveform that goes in and out the chip's pins is extremely helpful. `Logic Analyzers <https://en.wikipedia.org/wiki/Logic_analyzer>`_
capture that information and display it graphically, allowing you to see if the driver is doing the right thing can capture that information and display it graphically, allowing you to see if the driver is doing the right thing
on the wire. on the wire.
DMA Debugging DMA Debugging
@ -204,8 +204,3 @@ DMA Debugging
* Remember that logging can change the timing of any algorithms you might be using, so things may start or stop * Remember that logging can change the timing of any algorithms you might be using, so things may start or stop
working when logging is added or removed. Definitely test with logging disabled. working when logging is added or removed. Definitely test with logging disabled.