updated info docstring
This commit is contained in:
parent
a7ae977ffd
commit
2cdee4a243
1 changed files with 18 additions and 7 deletions
|
|
@ -20,12 +20,28 @@
|
||||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
# THE SOFTWARE.
|
# THE SOFTWARE.
|
||||||
"""
|
"""
|
||||||
`adafruit_AVRprog`
|
`adafruit_avrprog`
|
||||||
====================================================
|
====================================================
|
||||||
|
|
||||||
TODO(description)
|
Program your favorite AVR chips directly from CircuitPython with this
|
||||||
|
handy helper class that will let you make stand-alone programmers right
|
||||||
|
from your REPL
|
||||||
|
|
||||||
* Author(s): ladyada
|
* Author(s): ladyada
|
||||||
|
|
||||||
|
Implementation Notes
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
**Hardware:**
|
||||||
|
|
||||||
|
* See Learn Guide for supported hardware: `Stand-alone programming AVRs using CircuitPython
|
||||||
|
<https://learn.adafruit.com/stand-alone-programming-avrs-using-circuitpython/overview>`_
|
||||||
|
|
||||||
|
**Software and Dependencies:**
|
||||||
|
|
||||||
|
* Adafruit CircuitPython firmware for the ESP8622 and M0-based boards:
|
||||||
|
https://github.com/adafruit/circuitpython/releases
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# imports
|
# imports
|
||||||
|
|
@ -39,11 +55,6 @@ _SLOW_CLOCK = 100000
|
||||||
_FAST_CLOCK = 1000000
|
_FAST_CLOCK = 1000000
|
||||||
|
|
||||||
class AVRprog:
|
class AVRprog:
|
||||||
"""
|
|
||||||
Program your favorite AVR chips directly from CircuitPython with this
|
|
||||||
handy helper class that will let you make stand-alone programmers right
|
|
||||||
from your REPL
|
|
||||||
"""
|
|
||||||
_spi = None
|
_spi = None
|
||||||
_rst = None
|
_rst = None
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue