├── .gitmodules ├── Makefile ├── README.md ├── images ├── md009.jpg ├── nrf9160-dk.jpg └── nrf9160dk_030123.jpg ├── mdepx.conf ├── nrf9160dk.dts ├── obj └── .gitignore ├── src ├── board.c ├── board.h ├── dect.c ├── dect.h ├── gps.c ├── gps.h ├── http.c ├── http.h ├── jump.S ├── lcd.c ├── lcd.h ├── ldscript ├── main.c ├── math.c ├── math.h ├── mbedtls_config.h ├── nrf_modem.c ├── nrfx_errors.h ├── nrfx_ipc.c ├── nrfx_ipc.h ├── ntp.c ├── ntp.h └── wifi │ ├── config.h │ ├── include │ └── linux │ │ ├── compiler_attributes.h │ │ ├── stdarg.h │ │ ├── stddef.h │ │ └── string.h │ ├── nrf_wifi.c │ └── nrf_wifi.h └── tools └── bin2hex.py /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/README.md -------------------------------------------------------------------------------- /images/md009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/images/md009.jpg -------------------------------------------------------------------------------- /images/nrf9160-dk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/images/nrf9160-dk.jpg -------------------------------------------------------------------------------- /images/nrf9160dk_030123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/images/nrf9160dk_030123.jpg -------------------------------------------------------------------------------- /mdepx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/mdepx.conf -------------------------------------------------------------------------------- /nrf9160dk.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/nrf9160dk.dts -------------------------------------------------------------------------------- /obj/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/obj/.gitignore -------------------------------------------------------------------------------- /src/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/board.c -------------------------------------------------------------------------------- /src/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/board.h -------------------------------------------------------------------------------- /src/dect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/dect.c -------------------------------------------------------------------------------- /src/dect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/dect.h -------------------------------------------------------------------------------- /src/gps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/gps.c -------------------------------------------------------------------------------- /src/gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/gps.h -------------------------------------------------------------------------------- /src/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/http.c -------------------------------------------------------------------------------- /src/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/http.h -------------------------------------------------------------------------------- /src/jump.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/jump.S -------------------------------------------------------------------------------- /src/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/lcd.c -------------------------------------------------------------------------------- /src/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/lcd.h -------------------------------------------------------------------------------- /src/ldscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/ldscript -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/main.c -------------------------------------------------------------------------------- /src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/math.c -------------------------------------------------------------------------------- /src/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/math.h -------------------------------------------------------------------------------- /src/mbedtls_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/mbedtls_config.h -------------------------------------------------------------------------------- /src/nrf_modem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/nrf_modem.c -------------------------------------------------------------------------------- /src/nrfx_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/nrfx_errors.h -------------------------------------------------------------------------------- /src/nrfx_ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/nrfx_ipc.c -------------------------------------------------------------------------------- /src/nrfx_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/nrfx_ipc.h -------------------------------------------------------------------------------- /src/ntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/ntp.c -------------------------------------------------------------------------------- /src/ntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/ntp.h -------------------------------------------------------------------------------- /src/wifi/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/wifi/config.h -------------------------------------------------------------------------------- /src/wifi/include/linux/compiler_attributes.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/wifi/include/linux/stdarg.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/wifi/include/linux/stddef.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/wifi/include/linux/string.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/wifi/nrf_wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/wifi/nrf_wifi.c -------------------------------------------------------------------------------- /src/wifi/nrf_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/src/wifi/nrf_wifi.h -------------------------------------------------------------------------------- /tools/bin2hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdepx/nrf9160/HEAD/tools/bin2hex.py --------------------------------------------------------------------------------