zephyr/samples/bluetooth
Ulf Magnusson eba81c6e54 yaml: Remove redundant document separators
YAML document separators are needed e.g. when doing

  $ cat doc1.yaml doc2.yaml | <parser>

For the bindings, we never parse concatenated documents. Assume we don't
for any other .yaml files either.

Having document separators in e.g. base.yaml makes !include a bit
confusing, since the !included files are merged and not separate
documents (the merging is done in Python code though, so it makes no
difference for behavior).

The replacement was done with

    $ git ls-files '*.yaml' | \
        xargs sed -i -e '${/\s*\.\.\.\s*/d;}' -e 's/^\s*---\s*$//'

First pattern removes ... at the end of files, second pattern clears a
line with a lone --- on it.

Some redundant blank lines at the end of files were cleared with

    $ git ls-files '*.yaml' | xargs sed -i '${/^\s*$/d}'

This is more about making sure people can understand why every part of a
binding is there than about removing some text.

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2019-06-19 10:40:10 +02:00
..
beacon license: cleanup: add SPDX Apache-2.0 license identifier 2019-04-07 08:45:22 -04:00
central license: cleanup: add SPDX Apache-2.0 license identifier 2019-04-07 08:45:22 -04:00
central_hr license: cleanup: add SPDX Apache-2.0 license identifier 2019-04-07 08:45:22 -04:00
eddystone Bluetooth: Use BT_GATT_SERVICE_DEFINE whenever possible 2019-05-02 08:29:23 +03:00
gatt Bluetooth: Use BT_GATT_SERVICE_DEFINE whenever possible 2019-05-02 08:29:23 +03:00
handsfree license: cleanup: add SPDX Apache-2.0 license identifier 2019-04-07 08:45:22 -04:00
hci_spi dts: Convert from DT_<COMPAT>_<INSTANCE>_<PROP> to DT_INST... 2019-06-14 08:02:15 -05:00
hci_uart dts: Replace status = "ok" with status = "okay" 2019-06-14 19:51:13 -05:00
hci_usb usb: cdc: Add unique PIDs for each sample 2019-05-09 08:20:34 -04:00
ibeacon samples: bluetooth: ibeacon: change to ADV_NONCONN_IND type 2019-05-03 14:27:34 +03:00
ipsp license: cleanup: add SPDX Apache-2.0 license identifier 2019-04-07 08:45:22 -04:00
mesh license: cleanup: add SPDX Apache-2.0 license identifier 2019-04-07 08:45:22 -04:00
mesh_demo license: cleanup: add SPDX Apache-2.0 license identifier 2019-04-07 08:45:22 -04:00
peripheral samples: bluetooth: peripheral: Fix RX buffer size 2019-05-21 16:15:44 -04:00
peripheral_csc Bluetooth: Use BT_GATT_SERVICE_DEFINE whenever possible 2019-05-02 08:29:23 +03:00
peripheral_dis subsys/settings: Update client modules 2019-06-18 17:57:08 +02:00
peripheral_esp Bluetooth: Use BT_GATT_SERVICE_DEFINE whenever possible 2019-05-02 08:29:23 +03:00
peripheral_hids license: cleanup: add SPDX Apache-2.0 license identifier 2019-04-07 08:45:22 -04:00
peripheral_hr yaml: Remove redundant document separators 2019-06-19 10:40:10 +02:00
peripheral_sc_only license: cleanup: add SPDX Apache-2.0 license identifier 2019-04-07 08:45:22 -04:00
scan_adv license: cleanup: add SPDX Apache-2.0 license identifier 2019-04-07 08:45:22 -04:00
bluetooth.rst