├── .gitignore ├── LICENSE ├── README.md ├── _sidebar.md ├── developer-toolchains ├── arduino.md ├── developer-toolchains.md ├── esp-idf.md ├── img │ ├── arduino_board_manager.png │ ├── esp-idf-install.png │ └── esp-idf-setup.png ├── micropython.md ├── toit.md └── zephyr.md ├── faq ├── communication.md ├── e-sim-and-i-sim.md ├── gnss-gps.md ├── hardware-features.md ├── modem-update.md ├── power-management.md ├── software-development.md └── troubleshooting.md ├── file └── gm02s_at_commands.pdf ├── guides ├── cellular_connectivity.md ├── getting_started.md ├── guides.md ├── img │ └── getting_started_walter_sim_insert.jpg └── walterdemo.md ├── hardware ├── hardware.md ├── img │ ├── hardware_pinout.svg │ ├── walter-feels-transparent-01.png │ ├── walter-functionality-numbered-stroke.svg │ └── walter-testpoints.svg ├── walter.md └── walter_feels.md └── walter-modem ├── arduino_esp-idf ├── arduino_esp-idf.md ├── reference │ ├── bluecherry.md │ ├── coap.md │ ├── event_handlers.md │ ├── general.md │ ├── gnss.md │ ├── http.md │ ├── mqtt.md │ ├── pdp_ctx_management.md │ ├── power_saving.md │ ├── reference.md │ ├── sim_and_network.md │ ├── sockets.md │ └── tls_and_certificates.md └── setup │ ├── arduino.md │ ├── esp-idf.md │ ├── img │ ├── arduino_examples.png │ ├── arduino_library_manager.png │ ├── board_selection.png │ └── board_selection_screen.png │ └── setup.md ├── micropython ├── img │ ├── thonny-lib-open.png │ ├── thonny-new-dir.png │ └── thonny-upload-to-lib.png ├── micropython.md ├── reference │ ├── coap.md │ ├── common.md │ ├── gnss.md │ ├── http.md │ ├── mqtt.md │ ├── pdp_ctx_management.md │ ├── reference.md │ ├── sim_and_network.md │ ├── sleep.md │ ├── sockets.md │ └── tls_and_certificates.md └── setup.md └── walter-modem.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/README.md -------------------------------------------------------------------------------- /_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/_sidebar.md -------------------------------------------------------------------------------- /developer-toolchains/arduino.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/developer-toolchains/arduino.md -------------------------------------------------------------------------------- /developer-toolchains/developer-toolchains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/developer-toolchains/developer-toolchains.md -------------------------------------------------------------------------------- /developer-toolchains/esp-idf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/developer-toolchains/esp-idf.md -------------------------------------------------------------------------------- /developer-toolchains/img/arduino_board_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/developer-toolchains/img/arduino_board_manager.png -------------------------------------------------------------------------------- /developer-toolchains/img/esp-idf-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/developer-toolchains/img/esp-idf-install.png -------------------------------------------------------------------------------- /developer-toolchains/img/esp-idf-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/developer-toolchains/img/esp-idf-setup.png -------------------------------------------------------------------------------- /developer-toolchains/micropython.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/developer-toolchains/micropython.md -------------------------------------------------------------------------------- /developer-toolchains/toit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/developer-toolchains/toit.md -------------------------------------------------------------------------------- /developer-toolchains/zephyr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/developer-toolchains/zephyr.md -------------------------------------------------------------------------------- /faq/communication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/faq/communication.md -------------------------------------------------------------------------------- /faq/e-sim-and-i-sim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/faq/e-sim-and-i-sim.md -------------------------------------------------------------------------------- /faq/gnss-gps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/faq/gnss-gps.md -------------------------------------------------------------------------------- /faq/hardware-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/faq/hardware-features.md -------------------------------------------------------------------------------- /faq/modem-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/faq/modem-update.md -------------------------------------------------------------------------------- /faq/power-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/faq/power-management.md -------------------------------------------------------------------------------- /faq/software-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/faq/software-development.md -------------------------------------------------------------------------------- /faq/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/faq/troubleshooting.md -------------------------------------------------------------------------------- /file/gm02s_at_commands.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/file/gm02s_at_commands.pdf -------------------------------------------------------------------------------- /guides/cellular_connectivity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/guides/cellular_connectivity.md -------------------------------------------------------------------------------- /guides/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/guides/getting_started.md -------------------------------------------------------------------------------- /guides/guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/guides/guides.md -------------------------------------------------------------------------------- /guides/img/getting_started_walter_sim_insert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/guides/img/getting_started_walter_sim_insert.jpg -------------------------------------------------------------------------------- /guides/walterdemo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/guides/walterdemo.md -------------------------------------------------------------------------------- /hardware/hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/hardware/hardware.md -------------------------------------------------------------------------------- /hardware/img/hardware_pinout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/hardware/img/hardware_pinout.svg -------------------------------------------------------------------------------- /hardware/img/walter-feels-transparent-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/hardware/img/walter-feels-transparent-01.png -------------------------------------------------------------------------------- /hardware/img/walter-functionality-numbered-stroke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/hardware/img/walter-functionality-numbered-stroke.svg -------------------------------------------------------------------------------- /hardware/img/walter-testpoints.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/hardware/img/walter-testpoints.svg -------------------------------------------------------------------------------- /hardware/walter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/hardware/walter.md -------------------------------------------------------------------------------- /hardware/walter_feels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/hardware/walter_feels.md -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/arduino_esp-idf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/arduino_esp-idf.md -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/reference/bluecherry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/reference/bluecherry.md -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/reference/coap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/reference/coap.md -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/reference/event_handlers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/reference/event_handlers.md -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/reference/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/reference/general.md -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/reference/gnss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/reference/gnss.md -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/reference/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/reference/http.md -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/reference/mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/reference/mqtt.md -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/reference/pdp_ctx_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/reference/pdp_ctx_management.md -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/reference/power_saving.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/reference/power_saving.md -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/reference/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/reference/reference.md -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/reference/sim_and_network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/reference/sim_and_network.md -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/reference/sockets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/reference/sockets.md -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/reference/tls_and_certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/reference/tls_and_certificates.md -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/setup/arduino.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/setup/arduino.md -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/setup/esp-idf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/setup/esp-idf.md -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/setup/img/arduino_examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/setup/img/arduino_examples.png -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/setup/img/arduino_library_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/setup/img/arduino_library_manager.png -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/setup/img/board_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/setup/img/board_selection.png -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/setup/img/board_selection_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/setup/img/board_selection_screen.png -------------------------------------------------------------------------------- /walter-modem/arduino_esp-idf/setup/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/arduino_esp-idf/setup/setup.md -------------------------------------------------------------------------------- /walter-modem/micropython/img/thonny-lib-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/micropython/img/thonny-lib-open.png -------------------------------------------------------------------------------- /walter-modem/micropython/img/thonny-new-dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/micropython/img/thonny-new-dir.png -------------------------------------------------------------------------------- /walter-modem/micropython/img/thonny-upload-to-lib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/micropython/img/thonny-upload-to-lib.png -------------------------------------------------------------------------------- /walter-modem/micropython/micropython.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/micropython/micropython.md -------------------------------------------------------------------------------- /walter-modem/micropython/reference/coap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/micropython/reference/coap.md -------------------------------------------------------------------------------- /walter-modem/micropython/reference/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/micropython/reference/common.md -------------------------------------------------------------------------------- /walter-modem/micropython/reference/gnss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/micropython/reference/gnss.md -------------------------------------------------------------------------------- /walter-modem/micropython/reference/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/micropython/reference/http.md -------------------------------------------------------------------------------- /walter-modem/micropython/reference/mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/micropython/reference/mqtt.md -------------------------------------------------------------------------------- /walter-modem/micropython/reference/pdp_ctx_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/micropython/reference/pdp_ctx_management.md -------------------------------------------------------------------------------- /walter-modem/micropython/reference/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/micropython/reference/reference.md -------------------------------------------------------------------------------- /walter-modem/micropython/reference/sim_and_network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/micropython/reference/sim_and_network.md -------------------------------------------------------------------------------- /walter-modem/micropython/reference/sleep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/micropython/reference/sleep.md -------------------------------------------------------------------------------- /walter-modem/micropython/reference/sockets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/micropython/reference/sockets.md -------------------------------------------------------------------------------- /walter-modem/micropython/reference/tls_and_certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/micropython/reference/tls_and_certificates.md -------------------------------------------------------------------------------- /walter-modem/micropython/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/micropython/setup.md -------------------------------------------------------------------------------- /walter-modem/walter-modem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickSpot/walter-documentation/HEAD/walter-modem/walter-modem.md --------------------------------------------------------------------------------