Skip to content

Commit d3b8581

Browse files
committed
fix merge conflicts; address some comments
2 parents 3824679 + dabb8ff commit d3b8581

5 files changed

Lines changed: 11 additions & 10 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ before_script:
7474
- sudo apt-get install -y python3-pip
7575
- pip3 install --user sh click
7676
- ([[ -z "$TRAVIS_TESTS" ]] || sudo pip install --upgrade cpp-coveralls)
77-
- (! var_search "${TRAVIS_TESTS-}" docs || pip install --user 'Sphinx<1.8.0' sphinx-rtd-theme 'recommonmark<0.5.0')
77+
- (! var_search "${TRAVIS_TESTS-}" docs || pip install --user Sphinx sphinx-rtd-theme recommonmark)
7878
- (! var_search "${TRAVIS_TESTS-}" translations || pip3 install --user polib)
7979

8080
# report some good version numbers to the build

conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@
284284
# author, documentclass [howto, manual, or own class]).
285285
latex_documents = [
286286
(master_doc, 'CircuitPython.tex', 'CircuitPython Documentation',
287-
'Damien P. George, Paul Sokolovsky, and contributors', 'manual'),
287+
'CircuitPython Contributors', 'manual'),
288288
]
289289

290290
# The name of an image file (relative to this directory) to place at the top of
@@ -314,7 +314,7 @@
314314
# (source start file, name, description, authors, manual section).
315315
man_pages = [
316316
('index', 'CircuitPython', 'CircuitPython Documentation',
317-
['Damien P. George, Paul Sokolovsky, and contributors'], 1),
317+
['CircuitPython contributors'], 1),
318318
]
319319

320320
# If true, show URL addresses after external links.
@@ -328,7 +328,7 @@
328328
# dir menu entry, description, category)
329329
texinfo_documents = [
330330
(master_doc, 'CircuitPython', 'CircuitPython Documentation',
331-
'Damien P. George, Paul Sokolovsky, and contributors', 'CircuitPython', 'One line description of project.',
331+
'CircuitPython contributors', 'CircuitPython', 'Python for Microcontrollers.',
332332
'Miscellaneous'),
333333
]
334334

ports/nrf/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ the following links:
3333
> **NOTE**: These board specific readmes may be more up to date than the
3434
generic board-neutral documentation further down.
3535

36-
* Adafruit [Feather nRF52840](boards/feather_nrf52840_express/README.md): 1MB Flash, 256KB SRAM
37-
* Nordic PCA10056 see [Feather nRF52840](boards/pca10056/README.md)
38-
* MakerDiary NRF52840 MDK see [its README](boards/makerdiary_nrf52840_mdk/README.md)
36+
* Adafruit Feather nRF52840: `boards/feather_nrf52840_express/README.md`: 1MB Flash, 256KB SRAM
37+
* Nordic PCA10056 (uses nRF52840): `boards/pca10056/README.md`
38+
* MakerDiary NRF52840 MDK: `boards/makerdiary_nrf52840_mdk/README.md`
3939

4040
For all other board targets, see the generic notes below.
4141

shared-bindings/bleio/Broadcaster.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
//| .. currentmodule:: bleio
3333
//|
34-
//| :class:`Broadcaster` -- A GAP Broadcaster
34+
//| :class:`Broadcaster` -- Broadcast advertising packets.
3535
//| =========================================================
3636
//|
3737
//| Implement a BLE broadcaster which sends data in advertising packets and does not connect.
@@ -44,12 +44,13 @@
4444
//|
4545
//| # Broadcast once a second.
4646
//| broadcaster = bleio.Broadcaster(interval=1)
47-
//| i = 0
47+
//| data = 0
4848
//| # Broadcast a byte of data that's incremented once a minute
4949
//| while True:
5050
//| # data is an entire advertising data packet, starting with flags.
5151
//| broadcaster.start_advertising(data)
5252
//| time.sleep(60)
53+
//| data += 1
5354
//|
5455
//| .. class:: Broadcaster(interval=1)
5556
//|

shared-bindings/bleio/CharacteristicBuffer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
//| .. currentmodule:: bleio
3333
//|
34-
//| :class:`CharacteristicBuffer` -- GATT Service incoming values buffer.
34+
//| :class:`CharacteristicBuffer` -- BLE Service incoming values buffer.
3535
//| =====================================================================
3636
//|
3737
//| Accumulates a Characteristic's incoming values in a FIFO buffer.

0 commit comments

Comments
 (0)