File tree Expand file tree Collapse file tree 1 file changed +18
-7
lines changed Expand file tree Collapse file tree 1 file changed +18
-7
lines changed Original file line number Diff line number Diff line change 20
20
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
21
# THE SOFTWARE.
22
22
"""
23
- `adafruit_AVRprog `
23
+ `adafruit_avrprog `
24
24
====================================================
25
25
26
- TODO(description)
26
+ Program your favorite AVR chips directly from CircuitPython with this
27
+ handy helper class that will let you make stand-alone programmers right
28
+ from your REPL
27
29
28
30
* Author(s): ladyada
31
+
32
+ Implementation Notes
33
+ --------------------
34
+
35
+ **Hardware:**
36
+
37
+ * See Learn Guide for supported hardware: `Stand-alone programming AVRs using CircuitPython
38
+ <https://learn.adafruit.com/stand-alone-programming-avrs-using-circuitpython/overview>`_
39
+
40
+ **Software and Dependencies:**
41
+
42
+ * Adafruit CircuitPython firmware for the ESP8622 and M0-based boards:
43
+ https://github.com/adafruit/circuitpython/releases
44
+
29
45
"""
30
46
31
47
# imports
39
55
_FAST_CLOCK = 1000000
40
56
41
57
class AVRprog :
42
- """
43
- Program your favorite AVR chips directly from CircuitPython with this
44
- handy helper class that will let you make stand-alone programmers right
45
- from your REPL
46
- """
47
58
_spi = None
48
59
_rst = None
49
60
You can’t perform that action at this time.
0 commit comments