├── .gitignore ├── .readthedocs.yaml ├── AUTHORS ├── COPYING ├── ChangeLog ├── LICENSE ├── README.md ├── community └── testing │ └── mesh11sd_5.1.0-1_all.ipk ├── docs ├── docs.dokuwiki ├── images │ ├── avatar.png │ ├── avatar.xcf │ ├── avatarsmall.png │ ├── avatarsmall.xcf │ ├── installed-packages.png │ ├── uci-defaults-highlighted.png │ ├── uci-defaults-highlighted.xcf │ └── uci-defaults.png ├── requirements.txt └── source │ ├── conf.py │ ├── index.rst │ └── overview.rst ├── linux_openwrt ├── Makefile └── mesh11sd │ └── files │ └── etc │ ├── config │ └── mesh11sd │ └── init.d │ └── mesh11sd └── src └── mesh11sd /.gitignore: -------------------------------------------------------------------------------- 1 | /papers 2 | 3 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | On the openNDS/mesh11sd project: 2 | Active: 3 | Rob White 4 | 5 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | See /LICENSE 2 | -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/README.md -------------------------------------------------------------------------------- /community/testing/mesh11sd_5.1.0-1_all.ipk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/community/testing/mesh11sd_5.1.0-1_all.ipk -------------------------------------------------------------------------------- /docs/docs.dokuwiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/docs/docs.dokuwiki -------------------------------------------------------------------------------- /docs/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/docs/images/avatar.png -------------------------------------------------------------------------------- /docs/images/avatar.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/docs/images/avatar.xcf -------------------------------------------------------------------------------- /docs/images/avatarsmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/docs/images/avatarsmall.png -------------------------------------------------------------------------------- /docs/images/avatarsmall.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/docs/images/avatarsmall.xcf -------------------------------------------------------------------------------- /docs/images/installed-packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/docs/images/installed-packages.png -------------------------------------------------------------------------------- /docs/images/uci-defaults-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/docs/images/uci-defaults-highlighted.png -------------------------------------------------------------------------------- /docs/images/uci-defaults-highlighted.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/docs/images/uci-defaults-highlighted.xcf -------------------------------------------------------------------------------- /docs/images/uci-defaults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/docs/images/uci-defaults.png -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | docutils>0.18 2 | sphinx_rtd_theme 3 | 4 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/docs/source/overview.rst -------------------------------------------------------------------------------- /linux_openwrt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/linux_openwrt/Makefile -------------------------------------------------------------------------------- /linux_openwrt/mesh11sd/files/etc/config/mesh11sd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/linux_openwrt/mesh11sd/files/etc/config/mesh11sd -------------------------------------------------------------------------------- /linux_openwrt/mesh11sd/files/etc/init.d/mesh11sd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/linux_openwrt/mesh11sd/files/etc/init.d/mesh11sd -------------------------------------------------------------------------------- /src/mesh11sd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openNDS/mesh11sd/HEAD/src/mesh11sd --------------------------------------------------------------------------------