├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── fritzing ├── RTKBaseStation.fzz └── RTKBaseStation_bb.jpg ├── include └── README ├── lib └── README ├── littlefsbuilder.py ├── mklittlefs ├── platformio.ini ├── screenshots ├── BaseFront.jpg └── BaseTop.jpg ├── src ├── RTKBaseConfig.h ├── RTKCasterSecrets.h ├── TestsRTKBaseStation.h └── main.cpp └── test ├── README └── tests.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/README.md -------------------------------------------------------------------------------- /fritzing/RTKBaseStation.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/fritzing/RTKBaseStation.fzz -------------------------------------------------------------------------------- /fritzing/RTKBaseStation_bb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/fritzing/RTKBaseStation_bb.jpg -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/include/README -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/lib/README -------------------------------------------------------------------------------- /littlefsbuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/littlefsbuilder.py -------------------------------------------------------------------------------- /mklittlefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/mklittlefs -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/platformio.ini -------------------------------------------------------------------------------- /screenshots/BaseFront.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/screenshots/BaseFront.jpg -------------------------------------------------------------------------------- /screenshots/BaseTop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/screenshots/BaseTop.jpg -------------------------------------------------------------------------------- /src/RTKBaseConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/src/RTKBaseConfig.h -------------------------------------------------------------------------------- /src/RTKCasterSecrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/src/RTKCasterSecrets.h -------------------------------------------------------------------------------- /src/TestsRTKBaseStation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/src/TestsRTKBaseStation.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/src/main.cpp -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/test/README -------------------------------------------------------------------------------- /test/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangleboom/RTKBaseStation/HEAD/test/tests.h --------------------------------------------------------------------------------