Skip to content

Commit aafff63

Browse files
author
Kevin Townsend
committed
Fixed travis build issue
1 parent dc5ffd6 commit aafff63

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

adafruit_bluefruitspi.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,12 @@ def __init__(self, spi, cs, irq, debug=False):
151151
self._spi.unlock()
152152

153153
def cmd(self, cmd):
154-
"""Executes the supplied AT command, which must be terminated with
154+
"""
155+
Executes the supplied AT command, which must be terminated with
155156
a new-line (\n) character.
157+
Returns msgtype, rspid, rsp, which are 8-bit int, 16-bit int and a
158+
bytearray.
159+
:param cmd: The new-line (\n) terminated AT command to execute.
156160
"""
157161
# Make sure we stay within the 20 byte limit
158162
if len(cmd) > 16:

0 commit comments

Comments
 (0)