-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update submodules and docs Yet another regular maintenance update. The changes include: - update RF24 to v1.4.7 - update RF24Network to v2.0.0 - update RF24Mesh to v2.0.0 - update pybind11 to v2.10.4 - fix .gitattributes file messing with png files - fix pylint deprecation warnings about old config settings Updates to the docs include necessary changes to the docs' conf.py and adding social media cards to the metadata for each page. The social media cards are generated per the newly added layout.yml file/spec (included in these changes).
- Loading branch information
Showing
17 changed files
with
176 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,6 +69,7 @@ instance/ | |
|
||
# Sphinx documentation | ||
docs/_build/ | ||
docs/social_cards_cache/ | ||
|
||
# PyBuilder | ||
target/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule RF24
updated
66 files
Submodule RF24Mesh
updated
22 files
+28 −72 | .github/workflows/build_arduino.yml | |
+11 −163 | .github/workflows/build_linux.yml | |
+11 −104 | .github/workflows/build_platformIO.yml | |
+7 −92 | .github/workflows/build_rp2xxx.yml | |
+5 −50 | .github/workflows/doxygen.yml | |
+7 −0 | .gitignore | |
+28 −0 | README.md | |
+51 −23 | RF24Mesh.cpp | |
+55 −11 | RF24Mesh.h | |
+36 −7 | docs/Doxyfile | |
+39 −1 | docs/README.md | |
+3 −0 | docs/doxygen-custom.css | |
+3 −1 | docs/general_usage.md | |
+33 −3 | docs/main_page.md | |
+2 −0 | docs/setup_config.md | |
+3 −76 | docs/sphinx/_static/custom_material.css | |
+37 −26 | docs/sphinx/classRF24Mesh.rst | |
+27 −2 | docs/sphinx/conf.py | |
+1 −1 | docs/sphinx/index.rst | |
+0 −815 | doxygen-custom.css | |
+3 −2 | library.json | |
+1 −1 | library.properties |
Submodule RF24Network
updated
25 files
+28 −72 | .github/workflows/build_arduino.yml | |
+61 −0 | .github/workflows/build_linux.yml | |
+11 −95 | .github/workflows/build_platformIO.yml | |
+7 −86 | .github/workflows/build_rp2xxx.yml | |
+5 −50 | .github/workflows/doxygen.yml | |
+0 −202 | .github/workflows/linux_build.yml | |
+1 −0 | .gitignore | |
+30 −3 | README.md | |
+102 −63 | RF24Network.cpp | |
+43 −6 | RF24Network.h | |
+26 −63 | RPi/pyRF24Network/pyRF24Network.cpp | |
+35 −7 | docs/Doxyfile | |
+39 −1 | docs/README.md | |
+3 −0 | docs/addressing.md | |
+4 −1 | docs/advanced_config.md | |
+3 −0 | docs/doxygen-custom.css | |
+34 −6 | docs/main_page.md | |
+3 −81 | docs/sphinx/_static/custom_material.css | |
+38 −31 | docs/sphinx/classRF24Network.rst | |
+27 −2 | docs/sphinx/conf.py | |
+4 −1 | docs/tuning.md | |
+2 −0 | docs/zigabee.md | |
+0 −815 | doxygen-custom.css | |
+9 −2 | library.json | |
+2 −2 | library.properties |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
:description: How to use the radio as a fake Bluetooth Low Energy Beacon. | ||
|
||
BLE API | ||
================= | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,9 +23,3 @@ | |
:hidden: | ||
|
||
topology | ||
|
||
Indices and tables | ||
================== | ||
|
||
* :ref:`genindex` | ||
* :ref:`modindex` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
sphinx<6.0 | ||
sphinx-immaterial | ||
sphinx-social-cards |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
:description: How to use the radio's basic functionality. | ||
|
||
RF24 API | ||
======== | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
:description: How to use the radio as a dynamic mesh network node. | ||
|
||
RF24Mesh API | ||
============ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
:description: How to use the radio as a static network node. | ||
|
||
RF24Network API | ||
=============== | ||
|
||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
# {% block color_vals %} | ||
bg_color: &bg_color '{{ layout.background_color }}' | ||
fg_color: &fg_color '{{ layout.color }}' | ||
# {% endblock %} | ||
|
||
row1_width: &row1_width 1080 | ||
row2_width: &row2_width 500 | ||
col2: &col2 310 | ||
|
||
layers: | ||
# the base layer for the background | ||
- background: | ||
color: *bg_color | ||
image: > | ||
{% if layout.background_image %} | ||
{{ layout.background_image }} | ||
{% endif %} | ||
# the layer for the logo/icon image | ||
- size: { width: 60, height: 60 } | ||
offset: { x: 1050, y: 60 } | ||
icon: | ||
image: > | ||
{% if page.meta.icon %} | ||
{{ page.meta.icon }} | ||
{% elif layout.logo.image %} | ||
{{ layout.logo.image }} | ||
{% endif %} | ||
color: > | ||
{% if layout.logo.color %} | ||
{{ layout.logo.color }} | ||
{% endif %} | ||
# the layer for the large logo image | ||
- size: { width: 640, height: 320 } | ||
offset: { x: 560, y: *col2 } | ||
icon: | ||
image: '{{ layout.background_image }}' | ||
# fancy bg art | ||
# {% for r in range(60, 640, 90) %} | ||
- offset: { x: {{ -r }}, y: {{ -r }} } | ||
size: { width: {{ r * 2}}, height: {{ r * 2 }} } | ||
ellipse: | ||
border: | ||
width: {{ ((640 - r) * 0.1) | int }} | ||
color: '#802a033c' | ||
# {% endfor %} | ||
# the layer for the site's name | ||
- offset: { x: 60, y: 60 } | ||
size: { width: 960, height: 60 } | ||
typography: | ||
content: '{{ config.docstitle }}' | ||
align: end center | ||
color: '{{ layout.color }}' | ||
# the layer for the page's title | ||
- size: { width: *row1_width, height: 150 } | ||
offset: { x: 60, y: 150 } | ||
typography: | ||
content: > | ||
{% if page.meta.title %} | ||
{{ page.meta.title }} | ||
{% elif page.title %} | ||
{{ page.title }} | ||
{% endif %} | ||
line: | ||
height: 0.9 | ||
font: | ||
weight: 500 | ||
border: | ||
color: deep-orange | ||
width: 4 | ||
color: *fg_color | ||
align: center top | ||
# the layer for the site's (or page's) description | ||
- offset: { x: 60, y: *col2 } | ||
size: { width: 490, height: 290 } | ||
typography: | ||
content: > | ||
{% if page.meta and page.meta.description %} | ||
{{ page.meta.description }} | ||
{% else %} | ||
{{ config.site_description }} | ||
{% endif %} | ||
line: | ||
height: 0.87 | ||
amount: 4 | ||
overflow: on | ||
align: start bottom | ||
color: '{{ layout.color }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule pybind11
updated
25 files
+8 −3 | .github/workflows/ci.yml | |
+4 −4 | .github/workflows/pip.yml | |
+10 −10 | .pre-commit-config.yaml | |
+1 −0 | MANIFEST.in | |
+36 −0 | docs/changelog.rst | |
+0 −1 | docs/conf.py | |
+9 −1 | include/pybind11/detail/class.h | |
+3 −3 | include/pybind11/detail/common.h | |
+2 −0 | include/pybind11/eigen/matrix.h | |
+2 −0 | include/pybind11/eigen/tensor.h | |
+4 −4 | include/pybind11/gil.h | |
+4 −4 | include/pybind11/numpy.h | |
+7 −1 | pybind11/__main__.py | |
+1 −1 | pybind11/_version.py | |
+3 −4 | pybind11/setup_helpers.py | |
+1 −1 | tests/CMakeLists.txt | |
+7 −1 | tests/conftest.py | |
+0 −2 | tests/extra_python_package/test_files.py | |
+0 −4 | tests/test_chrono.py | |
+0 −1 | tests/test_class.py | |
+2 −1 | tests/test_custom_type_casters.py | |
+0 −6 | tests/test_eigen_tensor.py | |
+2 −1 | tests/test_local_bindings.py | |
+4 −5 | tests/test_modules.py | |
+0 −1 | tests/test_operator_overloading.py |