Skip to content

Commit

Permalink
Fixing docs
Browse files Browse the repository at this point in the history
Correcting the spelling of my name and fixing a markdown codeblock
  • Loading branch information
strainmike committed Mar 6, 2017
1 parent 68a256a commit d24ac33
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ information on sessions view our Read the docs documentation

Example usage of FPGA configuration functions:

with Session(bitfile="BitfilePath.lvbitx", resource="RIO0") as session:
try:
session.run()
except FpgaAlreadyRunningWarning:
pass
session.download()
session.abort()
session.reset()
my_control = session.registers["MyControl"]
my_control.write(4)
data = my_control.read()
with Session(bitfile="BitfilePath.lvbitx", resource="RIO0") as session:
try:
session.run()
except FpgaAlreadyRunningWarning:
pass
session.download()
session.abort()
session.reset()
my_control = session.registers["MyControl"]
my_control.write(4)
data = my_control.read()


See our [readthedocs page](http://nifpga-python.readthedocs.io/en/latest/) for more detailed examples and documentation.
Expand Down
2 changes: 1 addition & 1 deletion docs/readme.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
=========== =================================================================================================================================
Info Python API for interacting with LabVIEW FPGA Devices. See our `GitHub <https://github.com/ni/nifpga-python/>`_.
Author National Instruments
Maintainers Micheal Strain <Micheal.Strain@ni.com>, Mose Gumble <mose.gumble@ni.com>
Maintainers Michael Strain <Michael.Strain@ni.com>, Mose Gumble <mose.gumble@ni.com>
=========== =================================================================================================================================

About
Expand Down

0 comments on commit d24ac33

Please sign in to comment.