├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.md └── workflows │ ├── documentation.yml │ └── twister-apps-samples.yml ├── .gitignore ├── CMakeLists.txt ├── Kconfig ├── LICENSE ├── LICENSE-NORDIC ├── README.md ├── VERSION ├── applications ├── ifmcu_firmware │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.sysbuild │ ├── VERSION │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ ├── events │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── cdc_data_event.c │ │ ├── cdc_data_event.h │ │ ├── module_state_event.c │ │ ├── module_state_event.h │ │ ├── peer_conn_event.c │ │ ├── peer_conn_event.h │ │ ├── power_event.c │ │ ├── power_event.h │ │ ├── uart_data_event.c │ │ └── uart_data_event.h │ │ ├── main.c │ │ └── modules │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── charger.c │ │ ├── led_state.c │ │ ├── led_state.h │ │ ├── power_handler.c │ │ ├── settings.c │ │ ├── uart_handler.c │ │ ├── usb_bulk_commands.c │ │ ├── usb_bulk_interface.c │ │ ├── usb_bulk_msosv2.h │ │ ├── usb_cdc_handler.c │ │ └── utils.c ├── modem_shell │ ├── CMakeLists.txt │ ├── Kconfig │ ├── overlay-app_fota.conf │ ├── overlay-carrier.conf │ ├── overlay-cloud_coap.conf │ ├── overlay-cloud_mqtt.conf │ ├── overlay-debug.conf │ ├── overlay-lwm2m.conf │ ├── overlay-lwm2m_bootstrap.conf │ ├── overlay-lwm2m_pgps.conf │ ├── overlay-memfault.conf │ ├── overlay-modem-trace-ram.conf │ ├── overlay-modem_fota_full.conf │ ├── overlay-non-offloading.conf │ ├── overlay-pgps.conf │ ├── overlay-ppp.conf │ ├── overlay-rtt.conf │ ├── ppp.overlay │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ ├── at │ │ ├── CMakeLists.txt │ │ ├── at_cmd_mode.c │ │ ├── at_cmd_mode.h │ │ ├── at_cmd_mode_custom.c │ │ ├── at_cmd_mode_sett.c │ │ ├── at_cmd_mode_sett.h │ │ └── at_shell.c │ │ ├── cloud │ │ ├── CMakeLists.txt │ │ ├── cloud_coap_shell.c │ │ ├── cloud_lwm2m.c │ │ ├── cloud_lwm2m.h │ │ ├── cloud_lwm2m_shell.c │ │ ├── cloud_mqtt_shell.c │ │ └── cloud_rest_shell.c │ │ ├── drivers │ │ ├── CMakeLists.txt │ │ └── nrf91_non_offloaded_dev.c │ │ ├── fota │ │ ├── CMakeLists.txt │ │ ├── fota.c │ │ ├── fota.h │ │ └── fota_shell.c │ │ ├── gnss │ │ ├── CMakeLists.txt │ │ ├── gnss.c │ │ ├── gnss.h │ │ ├── gnss_shell.c │ │ ├── gnss_supl_support.c │ │ └── gnss_supl_support.h │ │ ├── gpio_count │ │ ├── CMakeLists.txt │ │ ├── gpio_count.c │ │ ├── gpio_count.h │ │ └── gpio_count_shell.c │ │ ├── link │ │ ├── CMakeLists.txt │ │ ├── link.c │ │ ├── link.h │ │ ├── link_api.c │ │ ├── link_api.h │ │ ├── link_settings.c │ │ ├── link_settings.h │ │ ├── link_shell.c │ │ ├── link_shell.h │ │ ├── link_shell_pdn.c │ │ ├── link_shell_pdn.h │ │ ├── link_shell_print.c │ │ └── link_shell_print.h │ │ ├── location │ │ ├── CMakeLists.txt │ │ ├── location_cmd_utils.c │ │ ├── location_cmd_utils.h │ │ ├── location_details.c │ │ ├── location_details.h │ │ ├── location_shell.c │ │ ├── location_shell.h │ │ ├── location_srv_ext.h │ │ ├── location_srv_ext_lwm2m.c │ │ └── location_srv_ext_nrf_cloud.c │ │ ├── main.c │ │ ├── mosh_defines.h │ │ ├── ping │ │ ├── CMakeLists.txt │ │ ├── icmp_ping.c │ │ ├── icmp_ping.h │ │ ├── icmp_ping_print.c │ │ ├── icmp_ping_print.h │ │ ├── icmp_ping_shell.c │ │ └── icmp_ping_shell.h │ │ ├── ppp │ │ ├── CMakeLists.txt │ │ ├── ppp_ctrl.c │ │ ├── ppp_ctrl.h │ │ ├── ppp_mdm_data_rcv.c │ │ ├── ppp_mdm_data_snd.c │ │ ├── ppp_settings.c │ │ ├── ppp_settings.h │ │ └── ppp_shell.c │ │ ├── print │ │ ├── CMakeLists.txt │ │ └── print_shell.c │ │ ├── rest │ │ ├── CMakeLists.txt │ │ └── rest_shell.c │ │ ├── shell.c │ │ ├── sms │ │ ├── CMakeLists.txt │ │ ├── sms.c │ │ ├── sms.h │ │ └── sms_shell.c │ │ ├── sock │ │ ├── CMakeLists.txt │ │ ├── sock.c │ │ ├── sock.h │ │ └── sock_shell.c │ │ ├── startup_cmd │ │ ├── CMakeLists.txt │ │ ├── startup_cmd_ctrl.c │ │ ├── startup_cmd_ctrl.h │ │ ├── startup_cmd_settings.c │ │ ├── startup_cmd_settings.h │ │ └── startup_cmd_shell.c │ │ ├── th │ │ ├── CMakeLists.txt │ │ ├── th_ctrl.c │ │ ├── th_ctrl.h │ │ └── th_shell.c │ │ ├── uart │ │ ├── CMakeLists.txt │ │ ├── uart_shell.c │ │ └── uart_shell.h │ │ └── utils │ │ ├── CMakeLists.txt │ │ ├── mosh_print.c │ │ ├── mosh_print.h │ │ ├── net_utils.c │ │ ├── net_utils.h │ │ ├── str_utils.c │ │ └── str_utils.h └── serial_lte_modem │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── boards │ ├── nrf9151_connectkit_nrf9151_ns.conf │ └── nrf9151_connectkit_nrf9151_ns.overlay │ ├── overlay-carrier-lgu.conf │ ├── overlay-carrier-softbank.conf │ ├── overlay-carrier.conf │ ├── overlay-cmux.conf │ ├── overlay-external-mcu.overlay │ ├── overlay-full_fota.conf │ ├── overlay-native_tls.conf │ ├── overlay-ppp-without-cmux.conf │ ├── overlay-ppp-without-cmux.overlay │ ├── overlay-ppp.conf │ ├── overlay-zephyr-modem-external-mcu.conf │ ├── overlay-zephyr-modem.conf │ ├── prj.conf │ ├── sample.yaml │ ├── src │ ├── ftp_c │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── slm_at_ftp.c │ │ ├── slm_at_ftp.h │ │ └── slm_at_tftp.c │ ├── gnss │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── slm_at_gnss.c │ │ └── slm_at_gnss.h │ ├── gpio │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── slm_at_gpio.c │ │ └── slm_at_gpio.h │ ├── http_c │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── slm_at_httpc.c │ │ └── slm_at_httpc.h │ ├── lwm2m_carrier │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── slm_at_carrier.c │ │ ├── slm_at_carrier.h │ │ ├── slm_at_carrier_cfg.c │ │ └── slm_at_carrier_cfg.h │ ├── main.c │ ├── mqtt_c │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── slm_at_mqtt.c │ │ └── slm_at_mqtt.h │ ├── nativetls │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── slm_at_cmng.c │ │ ├── slm_at_cmng.h │ │ ├── slm_native_tls.c │ │ └── slm_native_tls.h │ ├── nrfcloud │ │ ├── CMakeLists.txt │ │ ├── slm_at_nrfcloud.c │ │ └── slm_at_nrfcloud.h │ ├── slm_at_commands.c │ ├── slm_at_fota.c │ ├── slm_at_fota.h │ ├── slm_at_host.c │ ├── slm_at_host.h │ ├── slm_at_icmp.c │ ├── slm_at_icmp.h │ ├── slm_at_sms.c │ ├── slm_at_sms.h │ ├── slm_at_socket.c │ ├── slm_at_socket.h │ ├── slm_at_tcp_proxy.c │ ├── slm_at_tcp_proxy.h │ ├── slm_at_udp_proxy.c │ ├── slm_at_udp_proxy.h │ ├── slm_auto_connect.h │ ├── slm_cmux.c │ ├── slm_cmux.h │ ├── slm_defines.h │ ├── slm_ppp.c │ ├── slm_ppp.h │ ├── slm_settings.c │ ├── slm_settings.h │ ├── slm_sockopt.h │ ├── slm_trap_macros.h │ ├── slm_uart_handler.c │ ├── slm_uart_handler.h │ ├── slm_util.c │ ├── slm_util.h │ └── twi │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── slm_at_twi.c │ │ └── slm_at_twi.h │ ├── sysbuild-softbank.conf │ ├── sysbuild.conf │ └── sysbuild │ ├── b0 │ └── prj.conf │ └── mcuboot │ ├── app.overlay │ └── prj.conf ├── boards └── makerdiary │ └── nrf9151_connectkit │ ├── Kconfig.defconfig │ ├── Kconfig.nrf9151_connectkit │ ├── board.cmake │ ├── board.yml │ ├── nrf9151_connectkit_nrf52820-pinctrl.dtsi │ ├── nrf9151_connectkit_nrf52820.dts │ ├── nrf9151_connectkit_nrf52820.yaml │ ├── nrf9151_connectkit_nrf52820_defconfig │ ├── nrf9151_connectkit_nrf9151.dts │ ├── nrf9151_connectkit_nrf9151.yaml │ ├── nrf9151_connectkit_nrf9151_common-pinctrl.dtsi │ ├── nrf9151_connectkit_nrf9151_common.dtsi │ ├── nrf9151_connectkit_nrf9151_defconfig │ ├── nrf9151_connectkit_nrf9151_ns.dts │ ├── nrf9151_connectkit_nrf9151_ns.yaml │ ├── nrf9151_connectkit_nrf9151_ns_defconfig │ ├── nrf9151_connectkit_nrf9151_partition_conf.dtsi │ └── pre_dt_board.cmake ├── docs ├── .overrides │ ├── .icons │ │ ├── logo.svg │ │ ├── microcotroller.svg │ │ ├── nordic-chip.svg │ │ ├── uf2-icon.svg │ │ └── usb-dongle.svg │ ├── article.html │ ├── blog.html │ ├── home.html │ └── main.html ├── LICENSE.md ├── assets │ ├── attachments │ │ ├── EU-DOC.pdf │ │ ├── FCC-SDOC.pdf │ │ ├── ROHS_REACH-DOC.pdf │ │ ├── nrf9151-connect-kit-3d-model_reva.step │ │ ├── nrf9151-connect-kit-schematic_reva.pdf │ │ ├── nrf9151-connectkit-board-dxf_reva.zip │ │ └── nrf9151-connectkit-hardware-diagram_reva.pdf │ ├── favicon.png │ ├── images │ │ ├── additional_pins.png │ │ ├── attaching_gnss_antenna.png │ │ ├── attaching_lte_antenna.png │ │ ├── connecting_board.png │ │ ├── connecting_board_all.gif │ │ ├── connecting_board_with_lteant.gif │ │ ├── gnss_circuitry.png │ │ ├── gpios_pinout.png │ │ ├── ifmcu_arch.png │ │ ├── ifmcu_pinout.png │ │ ├── makerdiary-store-dark.png │ │ ├── makerdiary-store-github.png │ │ ├── makerdiary-store-light.png │ │ ├── mqttx_message_publish.png │ │ ├── mqttx_message_received.png │ │ ├── mqttx_new_connections.png │ │ ├── mqttx_new_connections_tls.png │ │ ├── mqttx_new_subscription.png │ │ ├── nano-sim_esim.png │ │ ├── nrf52820_swd_port.png │ │ ├── nrf9151_connectkit_dimensions_reva.png │ │ ├── nrf9151_connectkit_hw_diagram_back.png │ │ ├── nrf9151_connectkit_hw_diagram_front.png │ │ ├── nrf9151_connectkit_prod_hero_reva.png │ │ ├── nrf9151_swd_port.png │ │ ├── nrf_cloud_claiming_devices.png │ │ ├── nrf_cloud_device_provisioned.png │ │ ├── nrf_cloud_multi_service_device.png │ │ ├── nrf_cloud_rest_device_messages.png │ │ ├── nrfcloud_architecture.svg │ │ ├── power_supply_architecture.png │ │ ├── putty-settings.png │ │ ├── serial_studio_setup.png │ │ ├── taobao-store-github.png │ │ ├── taobao-store.png │ │ ├── tindie-store-github.png │ │ ├── tindie-store.png │ │ ├── uf2_bootloader_info.png │ │ └── uf2boot_copy_error_macos.png │ └── stylesheets │ │ └── extra.css ├── blog │ ├── .authors.yml │ ├── index.md │ └── posts │ │ ├── introducing-interface-mcu │ │ ├── cover.png │ │ └── index.md │ │ ├── introducing-nrf-cloud │ │ ├── cover.png │ │ └── index.md │ │ └── nrf9151-connect-kit-is-here │ │ ├── cover.png │ │ └── index.md ├── contributing │ ├── creating-a-pull-request.md │ ├── index.md │ └── reporting-a-bug.md ├── getting-started.md ├── guides │ ├── ncs │ │ ├── applications │ │ │ ├── ifmcu.md │ │ │ ├── index.md │ │ │ ├── modem_shell.md │ │ │ └── serial_lte_modem.md │ │ ├── getting-started.md │ │ ├── index.md │ │ └── samples │ │ │ ├── adc.md │ │ │ ├── at_client.md │ │ │ ├── at_monitor.md │ │ │ ├── button.md │ │ │ ├── coap_client.md │ │ │ ├── gnss.md │ │ │ ├── hello_world.md │ │ │ ├── https_client.md │ │ │ ├── index.md │ │ │ ├── modem_battery.md │ │ │ ├── modem_callbacks.md │ │ │ ├── modem_trace_backend.md │ │ │ ├── mqtt.md │ │ │ ├── nrf_cloud_multi_service.md │ │ │ ├── nrf_cloud_rest_device_message.md │ │ │ ├── nrf_provisioning.md │ │ │ ├── shell.md │ │ │ ├── tls_cipher_suites.md │ │ │ └── udp.md │ └── programming │ │ ├── index.md │ │ ├── update-ifmcu-fw.md │ │ └── update-nrf9151-fw.md ├── hardware.md ├── index.md ├── introduction.md ├── purchase.md ├── resources.md ├── revision-history.md └── troubleshooting.md ├── mkdocs.yml ├── samples ├── adc │ ├── CMakeLists.txt │ ├── boards │ │ ├── nrf9151_connectkit_nrf9151.overlay │ │ └── nrf9151_connectkit_nrf9151_ns.overlay │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ └── main.c ├── at_client │ ├── CMakeLists.txt │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ └── main.c ├── at_monitor │ ├── CMakeLists.txt │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ └── main.c ├── button │ ├── CMakeLists.txt │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ └── main.c ├── ciphersuites │ ├── CMakeLists.txt │ ├── Kconfig │ ├── cert │ │ └── GTSRootR4.pem │ ├── prj.conf │ ├── sample.yaml │ ├── src │ │ └── main.c │ └── sysbuild │ │ └── mcuboot │ │ ├── app.overlay │ │ └── prj.conf ├── coap_client │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.sysbuild │ ├── boards │ │ └── nrf9151_connectkit_nrf9151_ns.conf │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ └── main.c ├── gnss │ ├── CMakeLists.txt │ ├── Kconfig │ ├── overlay-pgps.conf │ ├── overlay-supl.conf │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ ├── assistance.c │ │ ├── assistance.h │ │ ├── assistance_minimal.c │ │ ├── assistance_supl.c │ │ ├── factory_almanac_v2.h │ │ ├── factory_almanac_v3.h │ │ ├── main.c │ │ ├── mcc_location_table.c │ │ └── mcc_location_table.h ├── hello_world │ ├── CMakeLists.txt │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ └── main.c ├── https_client │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.sysbuild │ ├── boards │ │ └── nrf9151_connectkit_nrf9151_ns.conf │ ├── cert │ │ └── DigiCertGlobalRootG3.pem │ ├── overlay-pdn-nrf91-ipv4.conf │ ├── overlay-tfm-nrf91.conf │ ├── prj.conf │ ├── sample.yaml │ ├── src │ │ └── main.c │ └── sysbuild │ │ └── mcuboot │ │ ├── app.overlay │ │ └── prj.conf ├── modem_battery │ ├── CMakeLists.txt │ ├── Kconfig │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ └── main.c ├── modem_callbacks │ ├── CMakeLists.txt │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ └── main.c ├── modem_trace_backend │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.trace_print_stats │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ ├── main.c │ │ └── trace_print_stats.c ├── mqtt │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.sysbuild │ ├── boards │ │ └── nrf9151_connectkit_nrf9151_ns.conf │ ├── overlay-tls-nrf91.conf │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ ├── common │ │ ├── CMakeLists.txt │ │ ├── message_channel.c │ │ └── message_channel.h │ │ └── modules │ │ ├── error │ │ ├── CMakeLists.txt │ │ ├── Kconfig.error │ │ └── error.c │ │ ├── network │ │ ├── CMakeLists.txt │ │ ├── Kconfig.network │ │ └── network.c │ │ ├── sampler │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sampler │ │ └── sampler.c │ │ ├── transport │ │ ├── CMakeLists.txt │ │ ├── Kconfig.transport │ │ ├── client_id │ │ │ ├── CMakeLists.txt │ │ │ ├── client_id.c │ │ │ └── client_id.h │ │ ├── credentials │ │ │ └── ca-cert.pem │ │ ├── credentials_provision │ │ │ ├── CMakeLists.txt │ │ │ └── credentials_provision.c │ │ └── transport.c │ │ └── trigger │ │ ├── CMakeLists.txt │ │ ├── Kconfig.trigger │ │ └── trigger.c ├── nrf_cloud_multi_service │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.sysbuild │ ├── overlay-coap_nrf_provisioning.conf │ ├── overlay-http_nrf_provisioning.conf │ ├── overlay_coap.conf │ ├── overlay_mcuboot_ext_flash.conf │ ├── overlay_min_coap.conf │ ├── overlay_min_mqtt.conf │ ├── overlay_nrfcloud_logging.conf │ ├── prj.conf │ ├── sample.yaml │ ├── src │ │ ├── application.c │ │ ├── application.h │ │ ├── at_commands.c │ │ ├── at_commands.h │ │ ├── cloud_connection.c │ │ ├── cloud_connection.h │ │ ├── fota_support.c │ │ ├── fota_support.h │ │ ├── fota_support_coap.c │ │ ├── fota_support_coap.h │ │ ├── led_control.c │ │ ├── led_control.h │ │ ├── location_tracking.c │ │ ├── location_tracking.h │ │ ├── main.c │ │ ├── message_queue.c │ │ ├── message_queue.h │ │ ├── provisioning_support.c │ │ ├── provisioning_support.h │ │ ├── sample_reboot.c │ │ ├── sample_reboot.h │ │ ├── shadow_config.c │ │ ├── shadow_config.h │ │ ├── shadow_support_coap.c │ │ ├── shadow_support_coap.h │ │ ├── temperature.c │ │ └── temperature.h │ ├── sysbuild.conf │ └── sysbuild │ │ └── mcuboot │ │ ├── app.overlay │ │ └── prj.conf ├── nrf_cloud_rest_device_message │ ├── CMakeLists.txt │ ├── Kconfig │ ├── include │ │ └── buttons_def.h │ ├── overlay-nrf_provisioning.conf │ ├── overlay-rtt.conf │ ├── overlay_nrfcloud_logging.conf │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ └── main.c ├── nrf_provisioning │ ├── CMakeLists.txt │ ├── Kconfig │ ├── overlay-at_shell.conf │ ├── overlay-coap.conf │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ └── main.c ├── shell │ ├── CMakeLists.txt │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ └── main.c └── udp │ ├── CMakeLists.txt │ ├── Kconfig │ ├── prj.conf │ ├── sample.yaml │ └── src │ └── main.c ├── scripts └── requirements-docs.txt ├── west.yml └── zephyr └── module.yml /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/twister-apps-samples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/.github/workflows/twister-apps-samples.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/Kconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-NORDIC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/LICENSE-NORDIC -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 -------------------------------------------------------------------------------- /applications/ifmcu_firmware/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/CMakeLists.txt -------------------------------------------------------------------------------- /applications/ifmcu_firmware/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/Kconfig -------------------------------------------------------------------------------- /applications/ifmcu_firmware/Kconfig.sysbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/Kconfig.sysbuild -------------------------------------------------------------------------------- /applications/ifmcu_firmware/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/VERSION -------------------------------------------------------------------------------- /applications/ifmcu_firmware/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/prj.conf -------------------------------------------------------------------------------- /applications/ifmcu_firmware/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/sample.yaml -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/events/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/events/CMakeLists.txt -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/events/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/events/Kconfig -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/events/cdc_data_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/events/cdc_data_event.c -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/events/cdc_data_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/events/cdc_data_event.h -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/events/module_state_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/events/module_state_event.c -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/events/module_state_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/events/module_state_event.h -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/events/peer_conn_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/events/peer_conn_event.c -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/events/peer_conn_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/events/peer_conn_event.h -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/events/power_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/events/power_event.c -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/events/power_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/events/power_event.h -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/events/uart_data_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/events/uart_data_event.c -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/events/uart_data_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/events/uart_data_event.h -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/main.c -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/modules/CMakeLists.txt -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/modules/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/modules/Kconfig -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/modules/charger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/modules/charger.c -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/modules/led_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/modules/led_state.c -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/modules/led_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/modules/led_state.h -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/modules/power_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/modules/power_handler.c -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/modules/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/modules/settings.c -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/modules/uart_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/modules/uart_handler.c -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/modules/usb_bulk_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/modules/usb_bulk_commands.c -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/modules/usb_bulk_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/modules/usb_bulk_interface.c -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/modules/usb_bulk_msosv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/modules/usb_bulk_msosv2.h -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/modules/usb_cdc_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/modules/usb_cdc_handler.c -------------------------------------------------------------------------------- /applications/ifmcu_firmware/src/modules/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/ifmcu_firmware/src/modules/utils.c -------------------------------------------------------------------------------- /applications/modem_shell/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/Kconfig -------------------------------------------------------------------------------- /applications/modem_shell/overlay-app_fota.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/overlay-app_fota.conf -------------------------------------------------------------------------------- /applications/modem_shell/overlay-carrier.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/overlay-carrier.conf -------------------------------------------------------------------------------- /applications/modem_shell/overlay-cloud_coap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/overlay-cloud_coap.conf -------------------------------------------------------------------------------- /applications/modem_shell/overlay-cloud_mqtt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/overlay-cloud_mqtt.conf -------------------------------------------------------------------------------- /applications/modem_shell/overlay-debug.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/overlay-debug.conf -------------------------------------------------------------------------------- /applications/modem_shell/overlay-lwm2m.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/overlay-lwm2m.conf -------------------------------------------------------------------------------- /applications/modem_shell/overlay-lwm2m_bootstrap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/overlay-lwm2m_bootstrap.conf -------------------------------------------------------------------------------- /applications/modem_shell/overlay-lwm2m_pgps.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/overlay-lwm2m_pgps.conf -------------------------------------------------------------------------------- /applications/modem_shell/overlay-memfault.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/overlay-memfault.conf -------------------------------------------------------------------------------- /applications/modem_shell/overlay-modem-trace-ram.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/overlay-modem-trace-ram.conf -------------------------------------------------------------------------------- /applications/modem_shell/overlay-modem_fota_full.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/overlay-modem_fota_full.conf -------------------------------------------------------------------------------- /applications/modem_shell/overlay-non-offloading.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/overlay-non-offloading.conf -------------------------------------------------------------------------------- /applications/modem_shell/overlay-pgps.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/overlay-pgps.conf -------------------------------------------------------------------------------- /applications/modem_shell/overlay-ppp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/overlay-ppp.conf -------------------------------------------------------------------------------- /applications/modem_shell/overlay-rtt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/overlay-rtt.conf -------------------------------------------------------------------------------- /applications/modem_shell/ppp.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/ppp.overlay -------------------------------------------------------------------------------- /applications/modem_shell/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/prj.conf -------------------------------------------------------------------------------- /applications/modem_shell/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/sample.yaml -------------------------------------------------------------------------------- /applications/modem_shell/src/at/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/at/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/src/at/at_cmd_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/at/at_cmd_mode.c -------------------------------------------------------------------------------- /applications/modem_shell/src/at/at_cmd_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/at/at_cmd_mode.h -------------------------------------------------------------------------------- /applications/modem_shell/src/at/at_cmd_mode_custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/at/at_cmd_mode_custom.c -------------------------------------------------------------------------------- /applications/modem_shell/src/at/at_cmd_mode_sett.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/at/at_cmd_mode_sett.c -------------------------------------------------------------------------------- /applications/modem_shell/src/at/at_cmd_mode_sett.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/at/at_cmd_mode_sett.h -------------------------------------------------------------------------------- /applications/modem_shell/src/at/at_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/at/at_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/cloud/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/cloud/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/src/cloud/cloud_coap_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/cloud/cloud_coap_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/cloud/cloud_lwm2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/cloud/cloud_lwm2m.c -------------------------------------------------------------------------------- /applications/modem_shell/src/cloud/cloud_lwm2m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/cloud/cloud_lwm2m.h -------------------------------------------------------------------------------- /applications/modem_shell/src/cloud/cloud_lwm2m_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/cloud/cloud_lwm2m_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/cloud/cloud_mqtt_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/cloud/cloud_mqtt_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/cloud/cloud_rest_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/cloud/cloud_rest_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/drivers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/drivers/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/src/drivers/nrf91_non_offloaded_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/drivers/nrf91_non_offloaded_dev.c -------------------------------------------------------------------------------- /applications/modem_shell/src/fota/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/fota/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/src/fota/fota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/fota/fota.c -------------------------------------------------------------------------------- /applications/modem_shell/src/fota/fota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/fota/fota.h -------------------------------------------------------------------------------- /applications/modem_shell/src/fota/fota_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/fota/fota_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/gnss/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/gnss/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/src/gnss/gnss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/gnss/gnss.c -------------------------------------------------------------------------------- /applications/modem_shell/src/gnss/gnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/gnss/gnss.h -------------------------------------------------------------------------------- /applications/modem_shell/src/gnss/gnss_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/gnss/gnss_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/gnss/gnss_supl_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/gnss/gnss_supl_support.c -------------------------------------------------------------------------------- /applications/modem_shell/src/gnss/gnss_supl_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/gnss/gnss_supl_support.h -------------------------------------------------------------------------------- /applications/modem_shell/src/gpio_count/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/gpio_count/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/src/gpio_count/gpio_count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/gpio_count/gpio_count.c -------------------------------------------------------------------------------- /applications/modem_shell/src/gpio_count/gpio_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/gpio_count/gpio_count.h -------------------------------------------------------------------------------- /applications/modem_shell/src/gpio_count/gpio_count_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/gpio_count/gpio_count_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/link/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/link/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/src/link/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/link/link.c -------------------------------------------------------------------------------- /applications/modem_shell/src/link/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/link/link.h -------------------------------------------------------------------------------- /applications/modem_shell/src/link/link_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/link/link_api.c -------------------------------------------------------------------------------- /applications/modem_shell/src/link/link_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/link/link_api.h -------------------------------------------------------------------------------- /applications/modem_shell/src/link/link_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/link/link_settings.c -------------------------------------------------------------------------------- /applications/modem_shell/src/link/link_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/link/link_settings.h -------------------------------------------------------------------------------- /applications/modem_shell/src/link/link_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/link/link_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/link/link_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/link/link_shell.h -------------------------------------------------------------------------------- /applications/modem_shell/src/link/link_shell_pdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/link/link_shell_pdn.c -------------------------------------------------------------------------------- /applications/modem_shell/src/link/link_shell_pdn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/link/link_shell_pdn.h -------------------------------------------------------------------------------- /applications/modem_shell/src/link/link_shell_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/link/link_shell_print.c -------------------------------------------------------------------------------- /applications/modem_shell/src/link/link_shell_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/link/link_shell_print.h -------------------------------------------------------------------------------- /applications/modem_shell/src/location/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/location/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/src/location/location_cmd_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/location/location_cmd_utils.c -------------------------------------------------------------------------------- /applications/modem_shell/src/location/location_cmd_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/location/location_cmd_utils.h -------------------------------------------------------------------------------- /applications/modem_shell/src/location/location_details.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/location/location_details.c -------------------------------------------------------------------------------- /applications/modem_shell/src/location/location_details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/location/location_details.h -------------------------------------------------------------------------------- /applications/modem_shell/src/location/location_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/location/location_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/location/location_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/location/location_shell.h -------------------------------------------------------------------------------- /applications/modem_shell/src/location/location_srv_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/location/location_srv_ext.h -------------------------------------------------------------------------------- /applications/modem_shell/src/location/location_srv_ext_lwm2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/location/location_srv_ext_lwm2m.c -------------------------------------------------------------------------------- /applications/modem_shell/src/location/location_srv_ext_nrf_cloud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/location/location_srv_ext_nrf_cloud.c -------------------------------------------------------------------------------- /applications/modem_shell/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/main.c -------------------------------------------------------------------------------- /applications/modem_shell/src/mosh_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/mosh_defines.h -------------------------------------------------------------------------------- /applications/modem_shell/src/ping/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/ping/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/src/ping/icmp_ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/ping/icmp_ping.c -------------------------------------------------------------------------------- /applications/modem_shell/src/ping/icmp_ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/ping/icmp_ping.h -------------------------------------------------------------------------------- /applications/modem_shell/src/ping/icmp_ping_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/ping/icmp_ping_print.c -------------------------------------------------------------------------------- /applications/modem_shell/src/ping/icmp_ping_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/ping/icmp_ping_print.h -------------------------------------------------------------------------------- /applications/modem_shell/src/ping/icmp_ping_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/ping/icmp_ping_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/ping/icmp_ping_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/ping/icmp_ping_shell.h -------------------------------------------------------------------------------- /applications/modem_shell/src/ppp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/ppp/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/src/ppp/ppp_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/ppp/ppp_ctrl.c -------------------------------------------------------------------------------- /applications/modem_shell/src/ppp/ppp_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/ppp/ppp_ctrl.h -------------------------------------------------------------------------------- /applications/modem_shell/src/ppp/ppp_mdm_data_rcv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/ppp/ppp_mdm_data_rcv.c -------------------------------------------------------------------------------- /applications/modem_shell/src/ppp/ppp_mdm_data_snd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/ppp/ppp_mdm_data_snd.c -------------------------------------------------------------------------------- /applications/modem_shell/src/ppp/ppp_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/ppp/ppp_settings.c -------------------------------------------------------------------------------- /applications/modem_shell/src/ppp/ppp_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/ppp/ppp_settings.h -------------------------------------------------------------------------------- /applications/modem_shell/src/ppp/ppp_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/ppp/ppp_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/print/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/print/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/src/print/print_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/print/print_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/rest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/rest/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/src/rest/rest_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/rest/rest_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/sms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/sms/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/src/sms/sms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/sms/sms.c -------------------------------------------------------------------------------- /applications/modem_shell/src/sms/sms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/sms/sms.h -------------------------------------------------------------------------------- /applications/modem_shell/src/sms/sms_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/sms/sms_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/sock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/sock/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/src/sock/sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/sock/sock.c -------------------------------------------------------------------------------- /applications/modem_shell/src/sock/sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/sock/sock.h -------------------------------------------------------------------------------- /applications/modem_shell/src/sock/sock_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/sock/sock_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/startup_cmd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/startup_cmd/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/src/startup_cmd/startup_cmd_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/startup_cmd/startup_cmd_ctrl.c -------------------------------------------------------------------------------- /applications/modem_shell/src/startup_cmd/startup_cmd_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/startup_cmd/startup_cmd_ctrl.h -------------------------------------------------------------------------------- /applications/modem_shell/src/startup_cmd/startup_cmd_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/startup_cmd/startup_cmd_settings.c -------------------------------------------------------------------------------- /applications/modem_shell/src/startup_cmd/startup_cmd_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/startup_cmd/startup_cmd_settings.h -------------------------------------------------------------------------------- /applications/modem_shell/src/startup_cmd/startup_cmd_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/startup_cmd/startup_cmd_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/th/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/th/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/src/th/th_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/th/th_ctrl.c -------------------------------------------------------------------------------- /applications/modem_shell/src/th/th_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/th/th_ctrl.h -------------------------------------------------------------------------------- /applications/modem_shell/src/th/th_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/th/th_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/uart/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/uart/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/src/uart/uart_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/uart/uart_shell.c -------------------------------------------------------------------------------- /applications/modem_shell/src/uart/uart_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/uart/uart_shell.h -------------------------------------------------------------------------------- /applications/modem_shell/src/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/utils/CMakeLists.txt -------------------------------------------------------------------------------- /applications/modem_shell/src/utils/mosh_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/utils/mosh_print.c -------------------------------------------------------------------------------- /applications/modem_shell/src/utils/mosh_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/utils/mosh_print.h -------------------------------------------------------------------------------- /applications/modem_shell/src/utils/net_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/utils/net_utils.c -------------------------------------------------------------------------------- /applications/modem_shell/src/utils/net_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/utils/net_utils.h -------------------------------------------------------------------------------- /applications/modem_shell/src/utils/str_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/utils/str_utils.c -------------------------------------------------------------------------------- /applications/modem_shell/src/utils/str_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/modem_shell/src/utils/str_utils.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/CMakeLists.txt -------------------------------------------------------------------------------- /applications/serial_lte_modem/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/Kconfig -------------------------------------------------------------------------------- /applications/serial_lte_modem/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/README.rst -------------------------------------------------------------------------------- /applications/serial_lte_modem/boards/nrf9151_connectkit_nrf9151_ns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/boards/nrf9151_connectkit_nrf9151_ns.conf -------------------------------------------------------------------------------- /applications/serial_lte_modem/boards/nrf9151_connectkit_nrf9151_ns.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/boards/nrf9151_connectkit_nrf9151_ns.overlay -------------------------------------------------------------------------------- /applications/serial_lte_modem/overlay-carrier-lgu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/overlay-carrier-lgu.conf -------------------------------------------------------------------------------- /applications/serial_lte_modem/overlay-carrier-softbank.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/overlay-carrier-softbank.conf -------------------------------------------------------------------------------- /applications/serial_lte_modem/overlay-carrier.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/overlay-carrier.conf -------------------------------------------------------------------------------- /applications/serial_lte_modem/overlay-cmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/overlay-cmux.conf -------------------------------------------------------------------------------- /applications/serial_lte_modem/overlay-external-mcu.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/overlay-external-mcu.overlay -------------------------------------------------------------------------------- /applications/serial_lte_modem/overlay-full_fota.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/overlay-full_fota.conf -------------------------------------------------------------------------------- /applications/serial_lte_modem/overlay-native_tls.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/overlay-native_tls.conf -------------------------------------------------------------------------------- /applications/serial_lte_modem/overlay-ppp-without-cmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/overlay-ppp-without-cmux.conf -------------------------------------------------------------------------------- /applications/serial_lte_modem/overlay-ppp-without-cmux.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/overlay-ppp-without-cmux.overlay -------------------------------------------------------------------------------- /applications/serial_lte_modem/overlay-ppp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/overlay-ppp.conf -------------------------------------------------------------------------------- /applications/serial_lte_modem/overlay-zephyr-modem-external-mcu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/overlay-zephyr-modem-external-mcu.conf -------------------------------------------------------------------------------- /applications/serial_lte_modem/overlay-zephyr-modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/overlay-zephyr-modem.conf -------------------------------------------------------------------------------- /applications/serial_lte_modem/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/prj.conf -------------------------------------------------------------------------------- /applications/serial_lte_modem/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/sample.yaml -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/ftp_c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/ftp_c/CMakeLists.txt -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/ftp_c/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/ftp_c/Kconfig -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/ftp_c/slm_at_ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/ftp_c/slm_at_ftp.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/ftp_c/slm_at_ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/ftp_c/slm_at_ftp.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/ftp_c/slm_at_tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/ftp_c/slm_at_tftp.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/gnss/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/gnss/CMakeLists.txt -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/gnss/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/gnss/Kconfig -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/gnss/slm_at_gnss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/gnss/slm_at_gnss.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/gnss/slm_at_gnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/gnss/slm_at_gnss.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/gpio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/gpio/CMakeLists.txt -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/gpio/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/gpio/Kconfig -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/gpio/slm_at_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/gpio/slm_at_gpio.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/gpio/slm_at_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/gpio/slm_at_gpio.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/http_c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/http_c/CMakeLists.txt -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/http_c/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/http_c/Kconfig -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/http_c/slm_at_httpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/http_c/slm_at_httpc.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/http_c/slm_at_httpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/http_c/slm_at_httpc.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/lwm2m_carrier/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/lwm2m_carrier/CMakeLists.txt -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/lwm2m_carrier/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/lwm2m_carrier/Kconfig -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/lwm2m_carrier/slm_at_carrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/lwm2m_carrier/slm_at_carrier.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/lwm2m_carrier/slm_at_carrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/lwm2m_carrier/slm_at_carrier.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/lwm2m_carrier/slm_at_carrier_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/lwm2m_carrier/slm_at_carrier_cfg.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/lwm2m_carrier/slm_at_carrier_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/lwm2m_carrier/slm_at_carrier_cfg.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/main.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/mqtt_c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/mqtt_c/CMakeLists.txt -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/mqtt_c/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/mqtt_c/Kconfig -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/mqtt_c/slm_at_mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/mqtt_c/slm_at_mqtt.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/mqtt_c/slm_at_mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/mqtt_c/slm_at_mqtt.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/nativetls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/nativetls/CMakeLists.txt -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/nativetls/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/nativetls/Kconfig -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/nativetls/slm_at_cmng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/nativetls/slm_at_cmng.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/nativetls/slm_at_cmng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/nativetls/slm_at_cmng.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/nativetls/slm_native_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/nativetls/slm_native_tls.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/nativetls/slm_native_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/nativetls/slm_native_tls.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/nrfcloud/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/nrfcloud/CMakeLists.txt -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/nrfcloud/slm_at_nrfcloud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/nrfcloud/slm_at_nrfcloud.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/nrfcloud/slm_at_nrfcloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/nrfcloud/slm_at_nrfcloud.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_at_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_at_commands.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_at_fota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_at_fota.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_at_fota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_at_fota.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_at_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_at_host.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_at_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_at_host.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_at_icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_at_icmp.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_at_icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_at_icmp.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_at_sms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_at_sms.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_at_sms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_at_sms.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_at_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_at_socket.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_at_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_at_socket.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_at_tcp_proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_at_tcp_proxy.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_at_tcp_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_at_tcp_proxy.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_at_udp_proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_at_udp_proxy.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_at_udp_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_at_udp_proxy.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_auto_connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_auto_connect.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_cmux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_cmux.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_cmux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_cmux.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_defines.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_ppp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_ppp.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_ppp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_ppp.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_settings.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_settings.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_sockopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_sockopt.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_trap_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_trap_macros.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_uart_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_uart_handler.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_uart_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_uart_handler.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_util.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/slm_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/slm_util.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/twi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/twi/CMakeLists.txt -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/twi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/twi/Kconfig -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/twi/slm_at_twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/twi/slm_at_twi.c -------------------------------------------------------------------------------- /applications/serial_lte_modem/src/twi/slm_at_twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/src/twi/slm_at_twi.h -------------------------------------------------------------------------------- /applications/serial_lte_modem/sysbuild-softbank.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/sysbuild-softbank.conf -------------------------------------------------------------------------------- /applications/serial_lte_modem/sysbuild.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/sysbuild.conf -------------------------------------------------------------------------------- /applications/serial_lte_modem/sysbuild/b0/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/sysbuild/b0/prj.conf -------------------------------------------------------------------------------- /applications/serial_lte_modem/sysbuild/mcuboot/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/sysbuild/mcuboot/app.overlay -------------------------------------------------------------------------------- /applications/serial_lte_modem/sysbuild/mcuboot/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/applications/serial_lte_modem/sysbuild/mcuboot/prj.conf -------------------------------------------------------------------------------- /boards/makerdiary/nrf9151_connectkit/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/boards/makerdiary/nrf9151_connectkit/Kconfig.defconfig -------------------------------------------------------------------------------- /boards/makerdiary/nrf9151_connectkit/Kconfig.nrf9151_connectkit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/boards/makerdiary/nrf9151_connectkit/Kconfig.nrf9151_connectkit -------------------------------------------------------------------------------- /boards/makerdiary/nrf9151_connectkit/board.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/boards/makerdiary/nrf9151_connectkit/board.cmake -------------------------------------------------------------------------------- /boards/makerdiary/nrf9151_connectkit/board.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/boards/makerdiary/nrf9151_connectkit/board.yml -------------------------------------------------------------------------------- /boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf52820-pinctrl.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf52820-pinctrl.dtsi -------------------------------------------------------------------------------- /boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf52820.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf52820.dts -------------------------------------------------------------------------------- /boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf52820.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf52820.yaml -------------------------------------------------------------------------------- /boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf52820_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf52820_defconfig -------------------------------------------------------------------------------- /boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf9151.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf9151.dts -------------------------------------------------------------------------------- /boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf9151.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf9151.yaml -------------------------------------------------------------------------------- /boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf9151_common-pinctrl.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf9151_common-pinctrl.dtsi -------------------------------------------------------------------------------- /boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf9151_common.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf9151_common.dtsi -------------------------------------------------------------------------------- /boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf9151_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf9151_defconfig -------------------------------------------------------------------------------- /boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf9151_ns.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf9151_ns.dts -------------------------------------------------------------------------------- /boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf9151_ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf9151_ns.yaml -------------------------------------------------------------------------------- /boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf9151_ns_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf9151_ns_defconfig -------------------------------------------------------------------------------- /boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf9151_partition_conf.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/boards/makerdiary/nrf9151_connectkit/nrf9151_connectkit_nrf9151_partition_conf.dtsi -------------------------------------------------------------------------------- /boards/makerdiary/nrf9151_connectkit/pre_dt_board.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/boards/makerdiary/nrf9151_connectkit/pre_dt_board.cmake -------------------------------------------------------------------------------- /docs/.overrides/.icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/.overrides/.icons/logo.svg -------------------------------------------------------------------------------- /docs/.overrides/.icons/microcotroller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/.overrides/.icons/microcotroller.svg -------------------------------------------------------------------------------- /docs/.overrides/.icons/nordic-chip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/.overrides/.icons/nordic-chip.svg -------------------------------------------------------------------------------- /docs/.overrides/.icons/uf2-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/.overrides/.icons/uf2-icon.svg -------------------------------------------------------------------------------- /docs/.overrides/.icons/usb-dongle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/.overrides/.icons/usb-dongle.svg -------------------------------------------------------------------------------- /docs/.overrides/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/.overrides/article.html -------------------------------------------------------------------------------- /docs/.overrides/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/.overrides/blog.html -------------------------------------------------------------------------------- /docs/.overrides/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/.overrides/home.html -------------------------------------------------------------------------------- /docs/.overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/.overrides/main.html -------------------------------------------------------------------------------- /docs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/LICENSE.md -------------------------------------------------------------------------------- /docs/assets/attachments/EU-DOC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/attachments/EU-DOC.pdf -------------------------------------------------------------------------------- /docs/assets/attachments/FCC-SDOC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/attachments/FCC-SDOC.pdf -------------------------------------------------------------------------------- /docs/assets/attachments/ROHS_REACH-DOC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/attachments/ROHS_REACH-DOC.pdf -------------------------------------------------------------------------------- /docs/assets/attachments/nrf9151-connect-kit-3d-model_reva.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/attachments/nrf9151-connect-kit-3d-model_reva.step -------------------------------------------------------------------------------- /docs/assets/attachments/nrf9151-connect-kit-schematic_reva.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/attachments/nrf9151-connect-kit-schematic_reva.pdf -------------------------------------------------------------------------------- /docs/assets/attachments/nrf9151-connectkit-board-dxf_reva.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/attachments/nrf9151-connectkit-board-dxf_reva.zip -------------------------------------------------------------------------------- /docs/assets/attachments/nrf9151-connectkit-hardware-diagram_reva.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/attachments/nrf9151-connectkit-hardware-diagram_reva.pdf -------------------------------------------------------------------------------- /docs/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/favicon.png -------------------------------------------------------------------------------- /docs/assets/images/additional_pins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/additional_pins.png -------------------------------------------------------------------------------- /docs/assets/images/attaching_gnss_antenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/attaching_gnss_antenna.png -------------------------------------------------------------------------------- /docs/assets/images/attaching_lte_antenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/attaching_lte_antenna.png -------------------------------------------------------------------------------- /docs/assets/images/connecting_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/connecting_board.png -------------------------------------------------------------------------------- /docs/assets/images/connecting_board_all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/connecting_board_all.gif -------------------------------------------------------------------------------- /docs/assets/images/connecting_board_with_lteant.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/connecting_board_with_lteant.gif -------------------------------------------------------------------------------- /docs/assets/images/gnss_circuitry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/gnss_circuitry.png -------------------------------------------------------------------------------- /docs/assets/images/gpios_pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/gpios_pinout.png -------------------------------------------------------------------------------- /docs/assets/images/ifmcu_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/ifmcu_arch.png -------------------------------------------------------------------------------- /docs/assets/images/ifmcu_pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/ifmcu_pinout.png -------------------------------------------------------------------------------- /docs/assets/images/makerdiary-store-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/makerdiary-store-dark.png -------------------------------------------------------------------------------- /docs/assets/images/makerdiary-store-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/makerdiary-store-github.png -------------------------------------------------------------------------------- /docs/assets/images/makerdiary-store-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/makerdiary-store-light.png -------------------------------------------------------------------------------- /docs/assets/images/mqttx_message_publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/mqttx_message_publish.png -------------------------------------------------------------------------------- /docs/assets/images/mqttx_message_received.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/mqttx_message_received.png -------------------------------------------------------------------------------- /docs/assets/images/mqttx_new_connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/mqttx_new_connections.png -------------------------------------------------------------------------------- /docs/assets/images/mqttx_new_connections_tls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/mqttx_new_connections_tls.png -------------------------------------------------------------------------------- /docs/assets/images/mqttx_new_subscription.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/mqttx_new_subscription.png -------------------------------------------------------------------------------- /docs/assets/images/nano-sim_esim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/nano-sim_esim.png -------------------------------------------------------------------------------- /docs/assets/images/nrf52820_swd_port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/nrf52820_swd_port.png -------------------------------------------------------------------------------- /docs/assets/images/nrf9151_connectkit_dimensions_reva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/nrf9151_connectkit_dimensions_reva.png -------------------------------------------------------------------------------- /docs/assets/images/nrf9151_connectkit_hw_diagram_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/nrf9151_connectkit_hw_diagram_back.png -------------------------------------------------------------------------------- /docs/assets/images/nrf9151_connectkit_hw_diagram_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/nrf9151_connectkit_hw_diagram_front.png -------------------------------------------------------------------------------- /docs/assets/images/nrf9151_connectkit_prod_hero_reva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/nrf9151_connectkit_prod_hero_reva.png -------------------------------------------------------------------------------- /docs/assets/images/nrf9151_swd_port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/nrf9151_swd_port.png -------------------------------------------------------------------------------- /docs/assets/images/nrf_cloud_claiming_devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/nrf_cloud_claiming_devices.png -------------------------------------------------------------------------------- /docs/assets/images/nrf_cloud_device_provisioned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/nrf_cloud_device_provisioned.png -------------------------------------------------------------------------------- /docs/assets/images/nrf_cloud_multi_service_device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/nrf_cloud_multi_service_device.png -------------------------------------------------------------------------------- /docs/assets/images/nrf_cloud_rest_device_messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/nrf_cloud_rest_device_messages.png -------------------------------------------------------------------------------- /docs/assets/images/nrfcloud_architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/nrfcloud_architecture.svg -------------------------------------------------------------------------------- /docs/assets/images/power_supply_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/power_supply_architecture.png -------------------------------------------------------------------------------- /docs/assets/images/putty-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/putty-settings.png -------------------------------------------------------------------------------- /docs/assets/images/serial_studio_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/serial_studio_setup.png -------------------------------------------------------------------------------- /docs/assets/images/taobao-store-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/taobao-store-github.png -------------------------------------------------------------------------------- /docs/assets/images/taobao-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/taobao-store.png -------------------------------------------------------------------------------- /docs/assets/images/tindie-store-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/tindie-store-github.png -------------------------------------------------------------------------------- /docs/assets/images/tindie-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/tindie-store.png -------------------------------------------------------------------------------- /docs/assets/images/uf2_bootloader_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/uf2_bootloader_info.png -------------------------------------------------------------------------------- /docs/assets/images/uf2boot_copy_error_macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/images/uf2boot_copy_error_macos.png -------------------------------------------------------------------------------- /docs/assets/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/assets/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/blog/.authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/blog/.authors.yml -------------------------------------------------------------------------------- /docs/blog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/blog/index.md -------------------------------------------------------------------------------- /docs/blog/posts/introducing-interface-mcu/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/blog/posts/introducing-interface-mcu/cover.png -------------------------------------------------------------------------------- /docs/blog/posts/introducing-interface-mcu/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/blog/posts/introducing-interface-mcu/index.md -------------------------------------------------------------------------------- /docs/blog/posts/introducing-nrf-cloud/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/blog/posts/introducing-nrf-cloud/cover.png -------------------------------------------------------------------------------- /docs/blog/posts/introducing-nrf-cloud/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/blog/posts/introducing-nrf-cloud/index.md -------------------------------------------------------------------------------- /docs/blog/posts/nrf9151-connect-kit-is-here/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/blog/posts/nrf9151-connect-kit-is-here/cover.png -------------------------------------------------------------------------------- /docs/blog/posts/nrf9151-connect-kit-is-here/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/blog/posts/nrf9151-connect-kit-is-here/index.md -------------------------------------------------------------------------------- /docs/contributing/creating-a-pull-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/contributing/creating-a-pull-request.md -------------------------------------------------------------------------------- /docs/contributing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/contributing/index.md -------------------------------------------------------------------------------- /docs/contributing/reporting-a-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/contributing/reporting-a-bug.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/guides/ncs/applications/ifmcu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/applications/ifmcu.md -------------------------------------------------------------------------------- /docs/guides/ncs/applications/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/applications/index.md -------------------------------------------------------------------------------- /docs/guides/ncs/applications/modem_shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/applications/modem_shell.md -------------------------------------------------------------------------------- /docs/guides/ncs/applications/serial_lte_modem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/applications/serial_lte_modem.md -------------------------------------------------------------------------------- /docs/guides/ncs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/getting-started.md -------------------------------------------------------------------------------- /docs/guides/ncs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/index.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/adc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/adc.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/at_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/at_client.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/at_monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/at_monitor.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/button.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/coap_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/coap_client.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/gnss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/gnss.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/hello_world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/hello_world.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/https_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/https_client.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/index.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/modem_battery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/modem_battery.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/modem_callbacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/modem_callbacks.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/modem_trace_backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/modem_trace_backend.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/mqtt.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/nrf_cloud_multi_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/nrf_cloud_multi_service.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/nrf_cloud_rest_device_message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/nrf_cloud_rest_device_message.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/nrf_provisioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/nrf_provisioning.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/shell.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/tls_cipher_suites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/tls_cipher_suites.md -------------------------------------------------------------------------------- /docs/guides/ncs/samples/udp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/ncs/samples/udp.md -------------------------------------------------------------------------------- /docs/guides/programming/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/programming/index.md -------------------------------------------------------------------------------- /docs/guides/programming/update-ifmcu-fw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/programming/update-ifmcu-fw.md -------------------------------------------------------------------------------- /docs/guides/programming/update-nrf9151-fw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/guides/programming/update-nrf9151-fw.md -------------------------------------------------------------------------------- /docs/hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/hardware.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/introduction.md -------------------------------------------------------------------------------- /docs/purchase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/purchase.md -------------------------------------------------------------------------------- /docs/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/resources.md -------------------------------------------------------------------------------- /docs/revision-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/revision-history.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /samples/adc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/adc/CMakeLists.txt -------------------------------------------------------------------------------- /samples/adc/boards/nrf9151_connectkit_nrf9151.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/adc/boards/nrf9151_connectkit_nrf9151.overlay -------------------------------------------------------------------------------- /samples/adc/boards/nrf9151_connectkit_nrf9151_ns.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/adc/boards/nrf9151_connectkit_nrf9151_ns.overlay -------------------------------------------------------------------------------- /samples/adc/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_ADC=y 2 | -------------------------------------------------------------------------------- /samples/adc/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/adc/sample.yaml -------------------------------------------------------------------------------- /samples/adc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/adc/src/main.c -------------------------------------------------------------------------------- /samples/at_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/at_client/CMakeLists.txt -------------------------------------------------------------------------------- /samples/at_client/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/at_client/prj.conf -------------------------------------------------------------------------------- /samples/at_client/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/at_client/sample.yaml -------------------------------------------------------------------------------- /samples/at_client/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/at_client/src/main.c -------------------------------------------------------------------------------- /samples/at_monitor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/at_monitor/CMakeLists.txt -------------------------------------------------------------------------------- /samples/at_monitor/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/at_monitor/prj.conf -------------------------------------------------------------------------------- /samples/at_monitor/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/at_monitor/sample.yaml -------------------------------------------------------------------------------- /samples/at_monitor/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/at_monitor/src/main.c -------------------------------------------------------------------------------- /samples/button/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/button/CMakeLists.txt -------------------------------------------------------------------------------- /samples/button/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_GPIO=y 2 | -------------------------------------------------------------------------------- /samples/button/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/button/sample.yaml -------------------------------------------------------------------------------- /samples/button/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/button/src/main.c -------------------------------------------------------------------------------- /samples/ciphersuites/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/ciphersuites/CMakeLists.txt -------------------------------------------------------------------------------- /samples/ciphersuites/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/ciphersuites/Kconfig -------------------------------------------------------------------------------- /samples/ciphersuites/cert/GTSRootR4.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/ciphersuites/cert/GTSRootR4.pem -------------------------------------------------------------------------------- /samples/ciphersuites/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/ciphersuites/prj.conf -------------------------------------------------------------------------------- /samples/ciphersuites/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/ciphersuites/sample.yaml -------------------------------------------------------------------------------- /samples/ciphersuites/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/ciphersuites/src/main.c -------------------------------------------------------------------------------- /samples/ciphersuites/sysbuild/mcuboot/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/ciphersuites/sysbuild/mcuboot/app.overlay -------------------------------------------------------------------------------- /samples/ciphersuites/sysbuild/mcuboot/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/ciphersuites/sysbuild/mcuboot/prj.conf -------------------------------------------------------------------------------- /samples/coap_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/coap_client/CMakeLists.txt -------------------------------------------------------------------------------- /samples/coap_client/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/coap_client/Kconfig -------------------------------------------------------------------------------- /samples/coap_client/Kconfig.sysbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/coap_client/Kconfig.sysbuild -------------------------------------------------------------------------------- /samples/coap_client/boards/nrf9151_connectkit_nrf9151_ns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/coap_client/boards/nrf9151_connectkit_nrf9151_ns.conf -------------------------------------------------------------------------------- /samples/coap_client/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/coap_client/prj.conf -------------------------------------------------------------------------------- /samples/coap_client/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/coap_client/sample.yaml -------------------------------------------------------------------------------- /samples/coap_client/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/coap_client/src/main.c -------------------------------------------------------------------------------- /samples/gnss/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/gnss/CMakeLists.txt -------------------------------------------------------------------------------- /samples/gnss/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/gnss/Kconfig -------------------------------------------------------------------------------- /samples/gnss/overlay-pgps.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/gnss/overlay-pgps.conf -------------------------------------------------------------------------------- /samples/gnss/overlay-supl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/gnss/overlay-supl.conf -------------------------------------------------------------------------------- /samples/gnss/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/gnss/prj.conf -------------------------------------------------------------------------------- /samples/gnss/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/gnss/sample.yaml -------------------------------------------------------------------------------- /samples/gnss/src/assistance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/gnss/src/assistance.c -------------------------------------------------------------------------------- /samples/gnss/src/assistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/gnss/src/assistance.h -------------------------------------------------------------------------------- /samples/gnss/src/assistance_minimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/gnss/src/assistance_minimal.c -------------------------------------------------------------------------------- /samples/gnss/src/assistance_supl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/gnss/src/assistance_supl.c -------------------------------------------------------------------------------- /samples/gnss/src/factory_almanac_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/gnss/src/factory_almanac_v2.h -------------------------------------------------------------------------------- /samples/gnss/src/factory_almanac_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/gnss/src/factory_almanac_v3.h -------------------------------------------------------------------------------- /samples/gnss/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/gnss/src/main.c -------------------------------------------------------------------------------- /samples/gnss/src/mcc_location_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/gnss/src/mcc_location_table.c -------------------------------------------------------------------------------- /samples/gnss/src/mcc_location_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/gnss/src/mcc_location_table.h -------------------------------------------------------------------------------- /samples/hello_world/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/hello_world/CMakeLists.txt -------------------------------------------------------------------------------- /samples/hello_world/prj.conf: -------------------------------------------------------------------------------- 1 | # nothing here 2 | -------------------------------------------------------------------------------- /samples/hello_world/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/hello_world/sample.yaml -------------------------------------------------------------------------------- /samples/hello_world/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/hello_world/src/main.c -------------------------------------------------------------------------------- /samples/https_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/https_client/CMakeLists.txt -------------------------------------------------------------------------------- /samples/https_client/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/https_client/Kconfig -------------------------------------------------------------------------------- /samples/https_client/Kconfig.sysbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/https_client/Kconfig.sysbuild -------------------------------------------------------------------------------- /samples/https_client/boards/nrf9151_connectkit_nrf9151_ns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/https_client/boards/nrf9151_connectkit_nrf9151_ns.conf -------------------------------------------------------------------------------- /samples/https_client/cert/DigiCertGlobalRootG3.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/https_client/cert/DigiCertGlobalRootG3.pem -------------------------------------------------------------------------------- /samples/https_client/overlay-pdn-nrf91-ipv4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/https_client/overlay-pdn-nrf91-ipv4.conf -------------------------------------------------------------------------------- /samples/https_client/overlay-tfm-nrf91.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/https_client/overlay-tfm-nrf91.conf -------------------------------------------------------------------------------- /samples/https_client/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/https_client/prj.conf -------------------------------------------------------------------------------- /samples/https_client/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/https_client/sample.yaml -------------------------------------------------------------------------------- /samples/https_client/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/https_client/src/main.c -------------------------------------------------------------------------------- /samples/https_client/sysbuild/mcuboot/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/https_client/sysbuild/mcuboot/app.overlay -------------------------------------------------------------------------------- /samples/https_client/sysbuild/mcuboot/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/https_client/sysbuild/mcuboot/prj.conf -------------------------------------------------------------------------------- /samples/modem_battery/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/modem_battery/CMakeLists.txt -------------------------------------------------------------------------------- /samples/modem_battery/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/modem_battery/Kconfig -------------------------------------------------------------------------------- /samples/modem_battery/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/modem_battery/prj.conf -------------------------------------------------------------------------------- /samples/modem_battery/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/modem_battery/sample.yaml -------------------------------------------------------------------------------- /samples/modem_battery/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/modem_battery/src/main.c -------------------------------------------------------------------------------- /samples/modem_callbacks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/modem_callbacks/CMakeLists.txt -------------------------------------------------------------------------------- /samples/modem_callbacks/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/modem_callbacks/prj.conf -------------------------------------------------------------------------------- /samples/modem_callbacks/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/modem_callbacks/sample.yaml -------------------------------------------------------------------------------- /samples/modem_callbacks/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/modem_callbacks/src/main.c -------------------------------------------------------------------------------- /samples/modem_trace_backend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/modem_trace_backend/CMakeLists.txt -------------------------------------------------------------------------------- /samples/modem_trace_backend/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/modem_trace_backend/Kconfig -------------------------------------------------------------------------------- /samples/modem_trace_backend/Kconfig.trace_print_stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/modem_trace_backend/Kconfig.trace_print_stats -------------------------------------------------------------------------------- /samples/modem_trace_backend/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/modem_trace_backend/prj.conf -------------------------------------------------------------------------------- /samples/modem_trace_backend/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/modem_trace_backend/sample.yaml -------------------------------------------------------------------------------- /samples/modem_trace_backend/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/modem_trace_backend/src/main.c -------------------------------------------------------------------------------- /samples/modem_trace_backend/src/trace_print_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/modem_trace_backend/src/trace_print_stats.c -------------------------------------------------------------------------------- /samples/mqtt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/CMakeLists.txt -------------------------------------------------------------------------------- /samples/mqtt/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/Kconfig -------------------------------------------------------------------------------- /samples/mqtt/Kconfig.sysbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/Kconfig.sysbuild -------------------------------------------------------------------------------- /samples/mqtt/boards/nrf9151_connectkit_nrf9151_ns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/boards/nrf9151_connectkit_nrf9151_ns.conf -------------------------------------------------------------------------------- /samples/mqtt/overlay-tls-nrf91.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/overlay-tls-nrf91.conf -------------------------------------------------------------------------------- /samples/mqtt/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/prj.conf -------------------------------------------------------------------------------- /samples/mqtt/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/sample.yaml -------------------------------------------------------------------------------- /samples/mqtt/src/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/common/CMakeLists.txt -------------------------------------------------------------------------------- /samples/mqtt/src/common/message_channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/common/message_channel.c -------------------------------------------------------------------------------- /samples/mqtt/src/common/message_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/common/message_channel.h -------------------------------------------------------------------------------- /samples/mqtt/src/modules/error/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/error/CMakeLists.txt -------------------------------------------------------------------------------- /samples/mqtt/src/modules/error/Kconfig.error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/error/Kconfig.error -------------------------------------------------------------------------------- /samples/mqtt/src/modules/error/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/error/error.c -------------------------------------------------------------------------------- /samples/mqtt/src/modules/network/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/network/CMakeLists.txt -------------------------------------------------------------------------------- /samples/mqtt/src/modules/network/Kconfig.network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/network/Kconfig.network -------------------------------------------------------------------------------- /samples/mqtt/src/modules/network/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/network/network.c -------------------------------------------------------------------------------- /samples/mqtt/src/modules/sampler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/sampler/CMakeLists.txt -------------------------------------------------------------------------------- /samples/mqtt/src/modules/sampler/Kconfig.sampler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/sampler/Kconfig.sampler -------------------------------------------------------------------------------- /samples/mqtt/src/modules/sampler/sampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/sampler/sampler.c -------------------------------------------------------------------------------- /samples/mqtt/src/modules/transport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/transport/CMakeLists.txt -------------------------------------------------------------------------------- /samples/mqtt/src/modules/transport/Kconfig.transport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/transport/Kconfig.transport -------------------------------------------------------------------------------- /samples/mqtt/src/modules/transport/client_id/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/transport/client_id/CMakeLists.txt -------------------------------------------------------------------------------- /samples/mqtt/src/modules/transport/client_id/client_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/transport/client_id/client_id.c -------------------------------------------------------------------------------- /samples/mqtt/src/modules/transport/client_id/client_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/transport/client_id/client_id.h -------------------------------------------------------------------------------- /samples/mqtt/src/modules/transport/credentials/ca-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/transport/credentials/ca-cert.pem -------------------------------------------------------------------------------- /samples/mqtt/src/modules/transport/credentials_provision/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/transport/credentials_provision/CMakeLists.txt -------------------------------------------------------------------------------- /samples/mqtt/src/modules/transport/credentials_provision/credentials_provision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/transport/credentials_provision/credentials_provision.c -------------------------------------------------------------------------------- /samples/mqtt/src/modules/transport/transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/transport/transport.c -------------------------------------------------------------------------------- /samples/mqtt/src/modules/trigger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/trigger/CMakeLists.txt -------------------------------------------------------------------------------- /samples/mqtt/src/modules/trigger/Kconfig.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/trigger/Kconfig.trigger -------------------------------------------------------------------------------- /samples/mqtt/src/modules/trigger/trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/mqtt/src/modules/trigger/trigger.c -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/.gitignore: -------------------------------------------------------------------------------- 1 | certs 2 | -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/CMakeLists.txt -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/Kconfig -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/Kconfig.sysbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/Kconfig.sysbuild -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/overlay-coap_nrf_provisioning.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/overlay-coap_nrf_provisioning.conf -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/overlay-http_nrf_provisioning.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/overlay-http_nrf_provisioning.conf -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/overlay_coap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/overlay_coap.conf -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/overlay_mcuboot_ext_flash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/overlay_mcuboot_ext_flash.conf -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/overlay_min_coap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/overlay_min_coap.conf -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/overlay_min_mqtt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/overlay_min_mqtt.conf -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/overlay_nrfcloud_logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/overlay_nrfcloud_logging.conf -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/prj.conf -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/sample.yaml -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/application.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/application.c -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/application.h -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/at_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/at_commands.c -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/at_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/at_commands.h -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/cloud_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/cloud_connection.c -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/cloud_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/cloud_connection.h -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/fota_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/fota_support.c -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/fota_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/fota_support.h -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/fota_support_coap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/fota_support_coap.c -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/fota_support_coap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/fota_support_coap.h -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/led_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/led_control.c -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/led_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/led_control.h -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/location_tracking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/location_tracking.c -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/location_tracking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/location_tracking.h -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/main.c -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/message_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/message_queue.c -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/message_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/message_queue.h -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/provisioning_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/provisioning_support.c -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/provisioning_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/provisioning_support.h -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/sample_reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/sample_reboot.c -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/sample_reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/sample_reboot.h -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/shadow_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/shadow_config.c -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/shadow_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/shadow_config.h -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/shadow_support_coap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/shadow_support_coap.c -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/shadow_support_coap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/shadow_support_coap.h -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/temperature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/temperature.c -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/src/temperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/src/temperature.h -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/sysbuild.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/sysbuild.conf -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/sysbuild/mcuboot/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/sysbuild/mcuboot/app.overlay -------------------------------------------------------------------------------- /samples/nrf_cloud_multi_service/sysbuild/mcuboot/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_multi_service/sysbuild/mcuboot/prj.conf -------------------------------------------------------------------------------- /samples/nrf_cloud_rest_device_message/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_rest_device_message/CMakeLists.txt -------------------------------------------------------------------------------- /samples/nrf_cloud_rest_device_message/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_rest_device_message/Kconfig -------------------------------------------------------------------------------- /samples/nrf_cloud_rest_device_message/include/buttons_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_rest_device_message/include/buttons_def.h -------------------------------------------------------------------------------- /samples/nrf_cloud_rest_device_message/overlay-nrf_provisioning.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_rest_device_message/overlay-nrf_provisioning.conf -------------------------------------------------------------------------------- /samples/nrf_cloud_rest_device_message/overlay-rtt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_rest_device_message/overlay-rtt.conf -------------------------------------------------------------------------------- /samples/nrf_cloud_rest_device_message/overlay_nrfcloud_logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_rest_device_message/overlay_nrfcloud_logging.conf -------------------------------------------------------------------------------- /samples/nrf_cloud_rest_device_message/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_rest_device_message/prj.conf -------------------------------------------------------------------------------- /samples/nrf_cloud_rest_device_message/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_rest_device_message/sample.yaml -------------------------------------------------------------------------------- /samples/nrf_cloud_rest_device_message/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_cloud_rest_device_message/src/main.c -------------------------------------------------------------------------------- /samples/nrf_provisioning/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_provisioning/CMakeLists.txt -------------------------------------------------------------------------------- /samples/nrf_provisioning/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_provisioning/Kconfig -------------------------------------------------------------------------------- /samples/nrf_provisioning/overlay-at_shell.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_provisioning/overlay-at_shell.conf -------------------------------------------------------------------------------- /samples/nrf_provisioning/overlay-coap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_provisioning/overlay-coap.conf -------------------------------------------------------------------------------- /samples/nrf_provisioning/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_provisioning/prj.conf -------------------------------------------------------------------------------- /samples/nrf_provisioning/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_provisioning/sample.yaml -------------------------------------------------------------------------------- /samples/nrf_provisioning/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/nrf_provisioning/src/main.c -------------------------------------------------------------------------------- /samples/shell/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/shell/CMakeLists.txt -------------------------------------------------------------------------------- /samples/shell/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/shell/prj.conf -------------------------------------------------------------------------------- /samples/shell/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/shell/sample.yaml -------------------------------------------------------------------------------- /samples/shell/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/shell/src/main.c -------------------------------------------------------------------------------- /samples/udp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/udp/CMakeLists.txt -------------------------------------------------------------------------------- /samples/udp/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/udp/Kconfig -------------------------------------------------------------------------------- /samples/udp/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/udp/prj.conf -------------------------------------------------------------------------------- /samples/udp/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/udp/sample.yaml -------------------------------------------------------------------------------- /samples/udp/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/samples/udp/src/main.c -------------------------------------------------------------------------------- /scripts/requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/scripts/requirements-docs.txt -------------------------------------------------------------------------------- /west.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/west.yml -------------------------------------------------------------------------------- /zephyr/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/nrf9151-connectkit/HEAD/zephyr/module.yml --------------------------------------------------------------------------------