Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
ble_hs/ | H | 25-Apr-2025 | - | 582 | 501 | |
ble_setup/ | H | 25-Apr-2025 | - | 227 | 170 | |
btshell/ | H | 25-Apr-2025 | - | 972 | 878 | |
mesh/ | H | 25-Apr-2025 | - | 127 | 90 | |
.gitignore | H A D | 25-Apr-2025 | 40 | 6 | 5 | |
Makefile | H A D | 25-Apr-2025 | 438 | 26 | 17 | |
README.rst | H A D | 25-Apr-2025 | 1 KiB | 34 | 23 | |
ble_sec.rst | H A D | 25-Apr-2025 | 3.2 KiB | 77 | 58 | |
conf.py | H A D | 25-Apr-2025 | 5.2 KiB | 178 | 57 | |
doxygen.xml | H A D | 25-Apr-2025 | 103.8 KiB | 2,434 | 1,885 | |
index.rst | H A D | 25-Apr-2025 | 4.6 KiB | 123 | 99 |
README.rst
1NimBLE Bluetooth Stack Documentation 2################################# 3 4This folder holds the documentation for the NimBLE Bluetooth stack from the 5`Apache Mynewt`_ project. It is built using `Sphinx`_. 6The source code also contains inline comments in `Doxygen`_ 7format to document the APIs. 8 9The complete project documentation can be found at `mynewt documentation`_ 10 11.. contents:: 12 13Writing Documentation 14======================= 15 16See: https://github.com/apache/mynewt-documentation#writing-documentation 17 18Previewing Changes 19========================== 20 21In order to preview any changes you make you must first install a Sphinx 22toolchain as described at https://github.com/apache/mynewt-documentation#id3. 23 Then: 24 25.. code-block:: bash 26 27 $ cd docs 28 $ make clean && make preview && (cd _build/html && python -m SimpleHTTPServer 8080) 29 30.. _Apache Mynewt: https://mynewt.apache.org/ 31.. _mynewt documentation: https://github.com/apache/mynewt-documentation 32.. _Sphinx: http://www.sphinx-doc.org/ 33.. _Doxygen: http://www.doxygen.org/ 34