-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
150 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
decocare Package | ||
================ | ||
|
||
:mod:`decocare` Package | ||
----------------------- | ||
|
||
.. automodule:: decocare.__init__ | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
:mod:`commands` Module | ||
---------------------- | ||
|
||
.. automodule:: decocare.commands | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
:mod:`download` Module | ||
---------------------- | ||
|
||
.. automodule:: decocare.download | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
:mod:`errors` Module | ||
-------------------- | ||
|
||
.. automodule:: decocare.errors | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
:mod:`history` Module | ||
--------------------- | ||
|
||
.. automodule:: decocare.history | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
:mod:`lib` Module | ||
----------------- | ||
|
||
.. automodule:: decocare.lib | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
:mod:`link` Module | ||
------------------ | ||
|
||
.. automodule:: decocare.link | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
:mod:`session` Module | ||
--------------------- | ||
|
||
.. automodule:: decocare.session | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
:mod:`stick` Module | ||
------------------- | ||
|
||
.. automodule:: decocare.stick | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
:mod:`tests` Module | ||
------------------- | ||
|
||
.. automodule:: decocare.tests | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
decocare | ||
======== | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
|
||
decocare |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
decocare | ||
======== | ||
|
||
|
||
:mod:`stick` Module | ||
------------------- | ||
|
||
.. automodule:: decocare.stick | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
The carelink usb stick acts like a modem. | ||
It responds to modem commands, in order to exchange data with a remote | ||
end-point. In this case, our little carelink usb modem responds to a | ||
variety of binary commands, which you must use in a co-ordinated flow | ||
to exchange data with the remote equipment. Also, in our case, the | ||
only remote equipment the carelink usb stick is known to talk to are | ||
the Me**ronic Par**igm series pumps. | ||
|
||
The purpose of this module is to encapsulate the low level operations | ||
needed to use the stick in any practical sense. It serves as a | ||
set of guides and tutorials which should help people trying to | ||
understand or their therapy better. This module seems mostly correct, | ||
but things start to fall apart when downloading lots of data. The | ||
protocol is either sensitive to some timing somewhere that I'm | ||
unaware of, or when CRC errors or other things happen, I simply do the | ||
wrong thing to recover. | ||
|
||
Please ask Medtronic for more information on how to learn what your | ||
device is doing. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters