├── .gitignore ├── LICENSE ├── README.md ├── certs ├── .gitignore ├── CA │ └── PitayaRoot.crt └── README.md ├── config ├── custom_board.h └── pitaya_go.h ├── docs ├── CONTRIBUTING.md ├── LICENSE.md ├── assets │ └── images │ │ ├── amazon_co_uk.jpg │ │ ├── amazon_logo.png │ │ ├── assemble-pitaya-go.gif │ │ ├── dfu-procedure-completed.png │ │ ├── get-the-temperature.png │ │ ├── makerdiary-store-logo.png │ │ ├── nrf-connect-programmer.png │ │ ├── nrfutil-generate-pkg.png │ │ ├── nrfutil-update-pkg.png │ │ ├── ping-terminal.png │ │ ├── pitaya-go-nfc-url.jpg │ │ ├── pitaya-go-product-parts-w.png │ │ ├── pitaya-go_pinout.png │ │ ├── programmer-device-connected.png │ │ ├── seeed_logo_2018_horizontal.png │ │ ├── select-softdevice-id.png │ │ ├── set-the-led-color.png │ │ ├── set-up-with-terminal.png │ │ ├── set-up-with-web-device-cli.png │ │ ├── taobao-logo.png │ │ ├── tindie-logo.png │ │ └── wifi-scan-terminal.png ├── getting-started.md ├── hw │ ├── pitaya-go_3d_v1_0.step │ ├── pitaya-go_board_file_v1_0.pdf │ ├── pitaya-go_pinout_v1_0.pdf │ └── pitaya-go_schematic_v1_0.pdf ├── index.md ├── nrf5-sdk │ ├── assets │ │ └── images │ │ │ ├── building-hello-world-example.png │ │ │ ├── hello-world-board.jpg │ │ │ ├── nRF5-SDK.png │ │ │ ├── printing-hello-world.png │ │ │ └── programming-example.png │ ├── ble │ │ ├── assets │ │ │ └── images │ │ │ │ ├── ble-app-bas-example.jpg │ │ │ │ ├── ble-app-beacon-example.jpg │ │ │ │ ├── ble-app-blinky-example.jpg │ │ │ │ ├── ble-app-hids-keyboard-example.png │ │ │ │ ├── ble-app-hrs-example.jpg │ │ │ │ ├── ble-app-hrs-webbluetooth.png │ │ │ │ ├── bluetooth-preferences-keyboard.png │ │ │ │ └── bluetooth-preferences-mouse.png │ │ ├── ble-bas-example.md │ │ ├── ble-beacon-example.md │ │ ├── ble-blinky-example.md │ │ ├── ble-hids-keyboard-example.md │ │ ├── ble-hids-mouse-example.md │ │ └── ble-hrs-example.md │ ├── build-n-run-a-first-example.md │ ├── index.md │ ├── peripheral │ │ ├── assets │ │ │ └── images │ │ │ │ ├── battery-status-example.png │ │ │ │ ├── blinky-example.jpg │ │ │ │ ├── button-example-board.jpg │ │ │ │ ├── button-example.png │ │ │ │ ├── install-rssi-viewer-app.png │ │ │ │ ├── nfc-example-board.jpg │ │ │ │ ├── pitaya-go-nfc-url.jpg │ │ │ │ ├── power-profiling-setup.png │ │ │ │ ├── qspi-example.png │ │ │ │ ├── rssi-viewer-connecting.png │ │ │ │ ├── rssi-viewer-example.png │ │ │ │ └── temperature-example.png │ │ ├── battery-example.md │ │ ├── blinky-example.md │ │ ├── button-example.md │ │ ├── nfc-example.md │ │ ├── power-profiler-example.md │ │ ├── qspi-example.md │ │ ├── rssi-viewer-example.md │ │ └── temperature-example.md │ └── setup-the-nrf5-sdk.md ├── openthread │ ├── assets │ │ ├── images │ │ │ ├── adding-device-via-qrcode.png │ │ │ ├── building-openthread-cli.png │ │ │ ├── checking-wpanctl-status.png │ │ │ ├── connect-to-border-router.png │ │ │ ├── form_n_check_thread_network.png │ │ │ ├── nrf-thread-topology-monitor.jpg │ │ │ ├── ot-arch_2x.png │ │ │ ├── otbr-arch-borderagent_2x.png │ │ │ ├── otbr-hw-parts.jpg │ │ │ ├── otbr-web-gui.png │ │ │ ├── run-the-sniffer-with-wireshark.png │ │ │ ├── setup-otbr-hw.jpg │ │ │ ├── wireshark-6lowpan-configuration.png │ │ │ ├── wireshark-ieee802154-configuration.png │ │ │ ├── wireshark-sniffing.png │ │ │ └── wireshark-thread-configuration.png │ │ └── js │ │ │ └── jquery.qrcode.min.js │ ├── build-n-run-thread-example.md │ ├── getting-started.md │ ├── index.md │ ├── openthread-border-router.md │ ├── setup-the-thread-sdk.md │ ├── thread-network-sniffer.md │ └── thread-topology-monitor.md ├── programming.md ├── where-to-buy.md └── wifi │ ├── advanced │ ├── assets │ │ └── images │ │ │ ├── mqtt-client-example-jsutility.png │ │ │ ├── mqtt-client-example-terminal.png │ │ │ ├── mqtt-client-example-web.png │ │ │ ├── ssl-connect-example-terminal.png │ │ │ ├── ssl-connect-example-web.png │ │ │ ├── weather-client-example-terminal.png │ │ │ └── weather-client-example-web.png │ ├── mqtt-client-example.md │ ├── ssl-connect-example.md │ └── weather-client-example.md │ ├── basic │ ├── ap-scan-example.md │ ├── assets │ │ └── images │ │ │ ├── ap-scan-example-terminal.png │ │ │ ├── ap-scan-example-web.png │ │ │ ├── chip-info-example-terminal.png │ │ │ ├── chip-info-example-web.png │ │ │ ├── mac-address-example-terminal.png │ │ │ ├── mac-address-example-web.png │ │ │ ├── mode-ap-example-terminal.png │ │ │ ├── mode-ap-example-web.png │ │ │ ├── mode-sta-example-terminal.png │ │ │ ├── mode-sta-example-web.png │ │ │ ├── power-profiling-setup.png │ │ │ ├── power-save-mode-example-terminal.png │ │ │ ├── power-save-mode-example-web.png │ │ │ ├── provision-http-example-mobile.jpg │ │ │ ├── provision-http-example-terminal.png │ │ │ ├── provision-http-example-web.png │ │ │ ├── signal-strength-example-terminal.png │ │ │ └── signal-strength-example-web.png │ ├── chip-info-example.md │ ├── mac-address-example.md │ ├── mode-ap-example.md │ ├── mode-sta-example.md │ ├── power-mode-example.md │ ├── provision-http-example.md │ └── signal-strength-example.md │ ├── create-tls-certificates.md │ ├── index.md │ ├── protocol │ ├── assets │ │ └── images │ │ │ ├── ping-example-terminal.png │ │ │ ├── ping-example-web.png │ │ │ ├── tcp-client-example-terminal.png │ │ │ ├── tcp-client-example-web.png │ │ │ ├── tcp-server-example-terminal.png │ │ │ ├── tcp-server-example-web.png │ │ │ ├── time-client-example-terminal.png │ │ │ ├── time-client-example-web.png │ │ │ ├── udp-client-example-terminal.png │ │ │ ├── udp-client-example-web.png │ │ │ ├── udp-server-example-terminal.png │ │ │ └── udp-server-example-web.png │ ├── ping-example.md │ ├── tcp-client-example.md │ ├── tcp-server-example.md │ ├── time-client-example.md │ ├── udp-client-example.md │ └── udp-server-example.md │ └── update │ ├── assets │ └── images │ │ ├── download-procedure.png │ │ ├── download-root-certificates.jpg │ │ ├── download-tls-certificates.jpg │ │ ├── download-wifi-firmware-passed.jpg │ │ └── modify-provisioning-webpage.jpg │ ├── customize-provisioning-page.md │ ├── download-firmware.md │ ├── download-root-certs.md │ ├── download-tls-certs.md │ ├── index.md │ └── modify-gain-values.md ├── examples ├── ble │ ├── ble_app_bas │ │ ├── armgcc │ │ │ ├── Makefile │ │ │ └── ble_app_bas_gcc_nrf52.ld │ │ ├── config │ │ │ └── sdk_config.h │ │ ├── hex │ │ │ ├── ble_app_bas_pitaya_go.hex │ │ │ └── ble_app_bas_pitaya_go_s140.hex │ │ └── main.c │ ├── ble_app_beacon │ │ ├── armgcc │ │ │ ├── Makefile │ │ │ └── ble_app_beacon_gcc_nrf52.ld │ │ ├── config │ │ │ └── sdk_config.h │ │ ├── hex │ │ │ ├── ble_app_beacon_pitaya_go.hex │ │ │ └── ble_app_beacon_pitaya_go_s140.hex │ │ └── main.c │ ├── ble_app_blinky │ │ ├── armgcc │ │ │ ├── Makefile │ │ │ └── ble_app_blinky_gcc_nrf52.ld │ │ ├── config │ │ │ └── sdk_config.h │ │ ├── hex │ │ │ ├── ble_app_blinky_pitaya_go.hex │ │ │ └── ble_app_blinky_pitaya_go_s140.hex │ │ └── main.c │ ├── ble_app_hids_keyboard │ │ ├── armgcc │ │ │ ├── Makefile │ │ │ └── ble_app_hids_keyboard_gcc_nrf52.ld │ │ ├── config │ │ │ └── sdk_config.h │ │ ├── hex │ │ │ ├── ble_app_hids_keyboard_pitaya_go.hex │ │ │ └── ble_app_hids_keyboard_pitaya_go_s140.hex │ │ └── main.c │ ├── ble_app_hids_mouse │ │ ├── armgcc │ │ │ ├── Makefile │ │ │ └── ble_app_hids_mouse_gcc_nrf52.ld │ │ ├── config │ │ │ └── sdk_config.h │ │ ├── hex │ │ │ ├── ble_app_hids_mouse_pitaya_go.hex │ │ │ └── ble_app_hids_mouse_pitaya_go_s140.hex │ │ └── main.c │ ├── ble_app_hrs │ │ ├── armgcc │ │ │ ├── Makefile │ │ │ └── ble_app_hrs_gcc_nrf52.ld │ │ ├── config │ │ │ └── sdk_config.h │ │ ├── hex │ │ │ ├── ble_app_hrs_pitaya_go.hex │ │ │ └── ble_app_hrs_pitaya_go_s140.hex │ │ └── main.c │ ├── ble_app_template │ │ ├── armgcc │ │ │ ├── Makefile │ │ │ └── ble_app_template_gcc_nrf52.ld │ │ ├── config │ │ │ └── sdk_config.h │ │ ├── hex │ │ │ ├── ble_app_template_pitaya_go.hex │ │ │ └── ble_app_template_pitaya_go_s140.hex │ │ └── main.c │ └── ble_connectivity │ │ ├── armgcc │ │ ├── Makefile │ │ └── ble_connectivity_gcc_nrf52.ld │ │ ├── config │ │ └── sdk_config.h │ │ ├── hex │ │ ├── ble_connectivity_usb_hci_pitaya_go.hex │ │ └── ble_connectivity_usb_hci_pitaya_go_s140.hex │ │ └── main.c ├── common │ └── console_log.c ├── open_bootloader │ ├── .gitignore │ ├── armgcc │ │ ├── Makefile │ │ └── open_bootloader_gcc_nrf52.ld │ ├── config │ │ └── sdk_config.h │ ├── dfu_public_key.c │ ├── hex │ │ ├── open_bootloader_pitaya_go_v1.0.0.hex │ │ └── open_bootloader_pitaya_go_v1.0.0.zip │ └── main.c ├── openthread │ ├── cli │ │ ├── ftd │ │ │ ├── armgcc │ │ │ │ ├── Makefile │ │ │ │ └── thread_cli_ftd_usb_gcc_nrf52.ld │ │ │ ├── config │ │ │ │ └── sdk_config.h │ │ │ └── hex │ │ │ │ ├── thread_cli_ftd_usb_pitaya_go_v1.3.1.hex │ │ │ │ ├── thread_cli_ftd_usb_pitaya_go_v1.3.1.zip │ │ │ │ └── thread_cli_ftd_usb_pitaya_go_v1.3.1_mbr.hex │ │ ├── main.c │ │ └── mtd │ │ │ ├── armgcc │ │ │ ├── Makefile │ │ │ └── thread_cli_mtd_usb_gcc_nrf52.ld │ │ │ ├── config │ │ │ └── sdk_config.h │ │ │ └── hex │ │ │ ├── thread_cli_mtd_usb_pitaya_go_v1.3.1.hex │ │ │ ├── thread_cli_mtd_usb_pitaya_go_v1.3.1.zip │ │ │ └── thread_cli_mtd_usb_pitaya_go_v1.3.1_mbr.hex │ └── ncp │ │ ├── ftd │ │ ├── armgcc │ │ │ ├── Makefile │ │ │ └── thread_ncp_ftd_usb_gcc_nrf52.ld │ │ ├── config │ │ │ └── sdk_config.h │ │ └── hex │ │ │ ├── thread_ncp_ftd_usb_pitaya_go_v1.3.1.hex │ │ │ ├── thread_ncp_ftd_usb_pitaya_go_v1.3.1.zip │ │ │ └── thread_ncp_ftd_usb_pitaya_go_v1.3.1_mbr.hex │ │ ├── main.c │ │ └── radio │ │ ├── armgcc │ │ ├── Makefile │ │ └── thread_ncp_radio_usb_gcc_nrf52.ld │ │ ├── config │ │ └── sdk_config.h │ │ └── hex │ │ ├── thread_ncp_radio_usb_pitaya_go_v1.3.1.hex │ │ ├── thread_ncp_radio_usb_pitaya_go_v1.3.1.zip │ │ └── thread_ncp_radio_usb_pitaya_go_v1.3.1_mbr.hex ├── peripheral │ ├── battery_status │ │ ├── armgcc │ │ │ ├── Makefile │ │ │ └── battery_status_gcc_nrf52.ld │ │ ├── config │ │ │ └── sdk_config.h │ │ ├── hex │ │ │ ├── battery_status_pitaya_go.hex │ │ │ └── battery_status_pitaya_go_mbr.hex │ │ └── main.c │ ├── blinky │ │ ├── armgcc │ │ │ ├── Makefile │ │ │ └── blinky_gcc_nrf52.ld │ │ ├── config │ │ │ └── sdk_config.h │ │ ├── hex │ │ │ ├── blinky_pitaya_go.hex │ │ │ └── blinky_pitaya_go_mbr.hex │ │ └── main.c │ ├── button │ │ ├── armgcc │ │ │ ├── Makefile │ │ │ └── button_gcc_nrf52.ld │ │ ├── config │ │ │ └── sdk_config.h │ │ ├── hex │ │ │ ├── button_pitaya_go.hex │ │ │ └── button_pitaya_go_mbr.hex │ │ └── main.c │ ├── hello_world │ │ ├── armgcc │ │ │ ├── Makefile │ │ │ └── hello_world_gcc_nrf52.ld │ │ ├── config │ │ │ └── sdk_config.h │ │ ├── hex │ │ │ ├── hello_world_pitaya_go.hex │ │ │ └── hello_world_pitaya_go_mbr.hex │ │ └── main.c │ ├── low_power_pwm │ │ ├── armgcc │ │ │ ├── Makefile │ │ │ └── low_power_pwm_gcc_nrf52.ld │ │ ├── config │ │ │ └── sdk_config.h │ │ ├── hex │ │ │ ├── low_power_pwm_pitaya_go.hex │ │ │ └── low_power_pwm_pitaya_go_mbr.hex │ │ └── main.c │ ├── nfc │ │ ├── record_launch_app │ │ │ ├── armgcc │ │ │ │ ├── Makefile │ │ │ │ └── nfc_launchapp_record_gcc_nrf52.ld │ │ │ ├── config │ │ │ │ └── sdk_config.h │ │ │ ├── hex │ │ │ │ ├── nfc_launchapp_record_pitaya_go.hex │ │ │ │ └── nfc_launchapp_record_pitaya_go_mbr.hex │ │ │ └── main.c │ │ └── record_url │ │ │ ├── armgcc │ │ │ ├── Makefile │ │ │ └── nfc_url_record_gcc_nrf52.ld │ │ │ ├── config │ │ │ └── sdk_config.h │ │ │ ├── hex │ │ │ ├── nfc_url_record_pitaya_go.hex │ │ │ └── nfc_url_record_pitaya_go_mbr.hex │ │ │ └── main.c │ ├── power_profile │ │ ├── armgcc │ │ │ ├── Makefile │ │ │ └── power_profile_gcc_nrf52.ld │ │ ├── config │ │ │ └── sdk_config.h │ │ ├── hex │ │ │ ├── power_profile_pitaya_go.hex │ │ │ └── power_profile_pitaya_go_mbr.hex │ │ └── main.c │ ├── qspi │ │ ├── armgcc │ │ │ ├── Makefile │ │ │ └── qspi_gcc_nrf52.ld │ │ ├── config │ │ │ └── sdk_config.h │ │ ├── hex │ │ │ ├── qspi_pitaya_go.hex │ │ │ └── qspi_pitaya_go_mbr.hex │ │ └── main.c │ ├── rssi_viewer │ │ ├── armgcc │ │ │ ├── Makefile │ │ │ └── rssi_viewer_gcc_nrf52.ld │ │ ├── config │ │ │ └── sdk_config.h │ │ ├── hex │ │ │ ├── rssi_viewer_pitaya_go.hex │ │ │ ├── rssi_viewer_pitaya_go_mbr.hex │ │ │ ├── rssi_viewer_pitaya_go_v1.0.0.hex │ │ │ ├── rssi_viewer_pitaya_go_v1.0.0.zip │ │ │ └── rssi_viewer_pitaya_go_v1.0.0_mbr.hex │ │ └── main.c │ └── temperature │ │ ├── armgcc │ │ ├── Makefile │ │ └── temperature_gcc_nrf52.ld │ │ ├── config │ │ └── sdk_config.h │ │ ├── hex │ │ ├── temperature_pitaya_go.hex │ │ └── temperature_pitaya_go_mbr.hex │ │ └── main.c ├── pitaya_cli │ ├── armgcc │ │ ├── Makefile │ │ └── pitaya_cli_gcc_nrf52.ld │ ├── config │ │ └── sdk_config.h │ ├── hex │ │ ├── pitaya_cli_v1.0.0.hex │ │ ├── pitaya_cli_v1.0.0.zip │ │ ├── pitaya_cli_v1.0.0_s140.hex │ │ └── s140_nrf52_6.1.0_softdevice.zip │ ├── main.c │ └── utility.c └── wifi │ ├── ap_scan_example │ ├── ap_scan_demo.c │ ├── armgcc │ │ ├── Makefile │ │ └── ap_scan_gcc_nrf52.ld │ ├── config │ │ └── sdk_config.h │ └── hex │ │ ├── ap_scan_pitaya_go.hex │ │ └── ap_scan_pitaya_go_s140.hex │ ├── chip_info_example │ ├── armgcc │ │ ├── Makefile │ │ └── chip_info_gcc_nrf52.ld │ ├── chip_info_demo.c │ ├── config │ │ └── sdk_config.h │ └── hex │ │ ├── chip_info_pitaya_go.hex │ │ └── chip_info_pitaya_go_s140.hex │ ├── common │ └── main_entry.c │ ├── mac_address_example │ ├── armgcc │ │ ├── Makefile │ │ └── mac_address_gcc_nrf52.ld │ ├── config │ │ └── sdk_config.h │ ├── hex │ │ ├── mac_address_pitaya_go.hex │ │ └── mac_address_pitaya_go_s140.hex │ └── mac_address_demo.c │ ├── mode_ap_example │ ├── armgcc │ │ ├── Makefile │ │ └── mode_ap_gcc_nrf52.ld │ ├── config │ │ └── sdk_config.h │ ├── hex │ │ ├── mode_ap_pitaya_go.hex │ │ └── mode_ap_pitaya_go_s140.hex │ └── mode_ap_demo.c │ ├── mode_sta_example │ ├── armgcc │ │ ├── Makefile │ │ └── mode_sta_gcc_nrf52.ld │ ├── config │ │ └── sdk_config.h │ ├── hex │ │ ├── mode_sta_pitaya_go.hex │ │ └── mode_sta_pitaya_go_s140.hex │ └── mode_sta_demo.c │ ├── mqtt_client_example │ ├── armgcc │ │ ├── Makefile │ │ └── mqtt_client_gcc_nrf52.ld │ ├── config │ │ └── sdk_config.h │ ├── hex │ │ ├── mqtt_client_pitaya_go.hex │ │ └── mqtt_client_pitaya_go_s140.hex │ └── mqtt_client_demo.c │ ├── ping_example │ ├── armgcc │ │ ├── Makefile │ │ └── ping_gcc_nrf52.ld │ ├── config │ │ └── sdk_config.h │ ├── hex │ │ ├── ping_pitaya_go.hex │ │ └── ping_pitaya_go_s140.hex │ └── ping_demo.c │ ├── power_save_mode_example │ ├── armgcc │ │ ├── Makefile │ │ └── power_save_mode_gcc_nrf52.ld │ ├── config │ │ └── sdk_config.h │ ├── hex │ │ ├── power_save_mode_pitaya_go.hex │ │ └── power_save_mode_pitaya_go_s140.hex │ └── power_save_mode_demo.c │ ├── provision_http_example │ ├── armgcc │ │ ├── Makefile │ │ └── provision_http_gcc_nrf52.ld │ ├── config │ │ └── sdk_config.h │ ├── hex │ │ ├── provision_http_pitaya_go.hex │ │ └── provision_http_pitaya_go_s140.hex │ └── provision_http_demo.c │ ├── signal_strength_example │ ├── armgcc │ │ ├── Makefile │ │ └── signal_strength_gcc_nrf52.ld │ ├── config │ │ └── sdk_config.h │ ├── hex │ │ ├── signal_strength_pitaya_go.hex │ │ └── signal_strength_pitaya_go_s140.hex │ └── signal_strength_demo.c │ ├── simple_tcp_client_example │ ├── armgcc │ │ ├── Makefile │ │ └── simple_tcp_client_gcc_nrf52.ld │ ├── config │ │ └── sdk_config.h │ ├── hex │ │ ├── simple_tcp_client_pitaya_go.hex │ │ └── simple_tcp_client_pitaya_go_s140.hex │ ├── script │ │ └── tcp_server.py │ └── simple_tcp_client_demo.c │ ├── simple_tcp_server_example │ ├── armgcc │ │ ├── Makefile │ │ └── simple_tcp_server_gcc_nrf52.ld │ ├── config │ │ └── sdk_config.h │ ├── hex │ │ ├── simple_tcp_server_pitaya_go.hex │ │ └── simple_tcp_server_pitaya_go_s140.hex │ ├── script │ │ └── tcp_client.py │ └── simple_tcp_server_demo.c │ ├── simple_udp_client_example │ ├── armgcc │ │ ├── Makefile │ │ └── simple_udp_client_gcc_nrf52.ld │ ├── config │ │ └── sdk_config.h │ ├── hex │ │ ├── simple_udp_client_pitaya_go.hex │ │ └── simple_udp_client_pitaya_go_s140.hex │ ├── script │ │ └── udp_server.py │ └── simple_udp_client_demo.c │ ├── simple_udp_server_example │ ├── armgcc │ │ ├── Makefile │ │ └── simple_udp_server_gcc_nrf52.ld │ ├── config │ │ └── sdk_config.h │ ├── hex │ │ ├── simple_udp_server_pitaya_go.hex │ │ └── simple_udp_server_pitaya_go_s140.hex │ ├── script │ │ └── udp_client.py │ └── simple_udp_server_demo.c │ ├── ssl_connect_example │ ├── armgcc │ │ ├── Makefile │ │ └── ssl_connect_gcc_nrf52.ld │ ├── config │ │ └── sdk_config.h │ ├── hex │ │ ├── ssl_connect_pitaya_go.hex │ │ └── ssl_connect_pitaya_go_s140.hex │ └── ssl_connect_demo.c │ ├── time_client_example │ ├── armgcc │ │ ├── Makefile │ │ └── time_client_gcc_nrf52.ld │ ├── config │ │ └── sdk_config.h │ ├── hex │ │ ├── time_client_pitaya_go.hex │ │ └── time_client_pitaya_go_s140.hex │ └── time_client_demo.c │ └── weather_client_example │ ├── armgcc │ ├── Makefile │ └── weather_client_gcc_nrf52.ld │ ├── config │ └── sdk_config.h │ ├── hex │ ├── weather_client_pitaya_go.hex │ └── weather_client_pitaya_go_s140.hex │ └── weather_client_demo.c ├── external ├── pahomqtt │ ├── MQTTClient │ │ ├── MQTTClient.c │ │ ├── MQTTClient.h │ │ ├── Platforms │ │ │ ├── MCHP_ATWx.c │ │ │ ├── MCHP_ATWx.h │ │ │ └── mqtt_platform.h │ │ └── Wrapper │ │ │ ├── mqtt.c │ │ │ └── mqtt.h │ ├── MQTTPacket │ │ ├── MQTTConnect.h │ │ ├── MQTTConnectClient.c │ │ ├── MQTTConnectServer.c │ │ ├── MQTTDeserializePublish.c │ │ ├── MQTTFormat.c │ │ ├── MQTTFormat.h │ │ ├── MQTTPacket.c │ │ ├── MQTTPacket.h │ │ ├── MQTTPublish.h │ │ ├── MQTTSerializePublish.c │ │ ├── MQTTSubscribe.h │ │ ├── MQTTSubscribeClient.c │ │ ├── MQTTSubscribeServer.c │ │ ├── MQTTUnsubscribe.h │ │ ├── MQTTUnsubscribeClient.c │ │ ├── MQTTUnsubscribeServer.c │ │ └── StackTrace.h │ └── doxygen │ │ └── thirdparty.pahomqtt_0 │ │ ├── doxyfile.doxygen │ │ └── doxygen_module_mainpage.h ├── usb_driver │ ├── nordic_cdc_acm.cat │ └── nordic_cdc_acm.inf └── winc1500 │ ├── WINC1500_SW_API.chm │ ├── bsp │ ├── include │ │ ├── nm_bsp.h │ │ ├── nm_bsp_internal.h │ │ └── nm_bsp_nrf52840.h │ └── source │ │ └── nm_bsp_nrf52840.c │ ├── bus_wrapper │ ├── include │ │ └── nm_bus_wrapper.h │ └── source │ │ └── nm_bus_wrapper_nrf52840.c │ ├── common │ ├── include │ │ ├── nm_common.h │ │ └── nm_debug.h │ └── source │ │ └── nm_common.c │ ├── doxygen │ ├── common.components.wifi.winc1500_0 │ │ ├── doxyfile.doxygen │ │ └── doxygen_module_mainpage.h │ ├── common.components.wifi.winc1500_1 │ │ ├── doxyfile.doxygen │ │ └── doxygen_module_mainpage.h │ ├── common.components.wifi.winc1500_2 │ │ ├── doxyfile.doxygen │ │ └── doxygen_module_mainpage.h │ ├── common.components.wifi.winc1500_3 │ │ ├── doxyfile.doxygen │ │ └── doxygen_module_mainpage.h │ ├── common.components.wifi.winc1500_4 │ │ ├── doxyfile.doxygen │ │ └── doxygen_module_mainpage.h │ ├── common.components.wifi.winc1500_5 │ │ ├── doxyfile.doxygen │ │ └── doxygen_module_mainpage.h │ ├── common.components.wifi.winc1500_6 │ │ ├── doxyfile.doxygen │ │ └── doxygen_module_mainpage.h │ └── common.components.wifi.winc1500_7 │ │ ├── doxyfile.doxygen │ │ └── doxygen_module_mainpage.h │ ├── driver │ ├── include │ │ ├── ecc_types.h │ │ ├── m2m_ate_mode.h │ │ ├── m2m_crypto.h │ │ ├── m2m_ota.h │ │ ├── m2m_periph.h │ │ ├── m2m_ssl.h │ │ ├── m2m_types.h │ │ └── m2m_wifi.h │ └── source │ │ ├── m2m_ate_mode.c │ │ ├── m2m_crypto.c │ │ ├── m2m_hif.c │ │ ├── m2m_hif.h │ │ ├── m2m_ota.c │ │ ├── m2m_periph.c │ │ ├── m2m_ssl.c │ │ ├── m2m_wifi.c │ │ ├── nmasic.c │ │ ├── nmasic.h │ │ ├── nmbus.c │ │ ├── nmbus.h │ │ ├── nmdrv.c │ │ ├── nmdrv.h │ │ ├── nmi2c.c │ │ ├── nmi2c.h │ │ ├── nmspi.c │ │ ├── nmspi.h │ │ ├── nmuart.c │ │ └── nmuart.h │ ├── module_config │ └── nrf52840 │ │ └── conf_winc.h │ ├── programmer │ ├── programmer.h │ └── programmer_apis.h │ ├── root_tls_cert │ ├── crypto │ │ ├── crypto.h │ │ ├── crypto_api.c │ │ ├── crypto_api.h │ │ ├── crypto_types.h │ │ ├── hash.c │ │ ├── rsa_key.c │ │ ├── tls_buffer_manager.c │ │ └── tls_buffer_manager.h │ ├── pem.c │ ├── pem.h │ ├── root_setup.c │ ├── root_setup.h │ ├── root_tls_cert.h │ ├── tls_setup.c │ ├── tls_setup.h │ ├── tls_srv_sec.c │ ├── tls_srv_sec.h │ └── x509 │ │ ├── asn1.c │ │ ├── asn1.h │ │ ├── x509_cert.c │ │ └── x509_cert.h │ ├── socket │ ├── include │ │ ├── m2m_socket_host_if.h │ │ └── socket.h │ └── source │ │ ├── socket.c │ │ └── socket_internal.h │ └── spi_flash │ ├── include │ ├── flexible_flash.h │ ├── spi_flash.h │ └── spi_flash_map.h │ └── source │ ├── flexible_flash.c │ └── spi_flash.c ├── firmware ├── open_bootloader │ ├── open_bootloader_pitaya_go_v1.0.0.hex │ └── open_bootloader_pitaya_go_v1.0.0.zip ├── openthread │ ├── cli │ │ ├── thread_cli_ftd_usb_pitaya_go_v1.3.1.hex │ │ ├── thread_cli_ftd_usb_pitaya_go_v1.3.1.zip │ │ ├── thread_cli_ftd_usb_pitaya_go_v1.3.1_mbr.hex │ │ ├── thread_cli_mtd_usb_pitaya_go_v1.3.1.hex │ │ ├── thread_cli_mtd_usb_pitaya_go_v1.3.1.zip │ │ └── thread_cli_mtd_usb_pitaya_go_v1.3.1_mbr.hex │ └── ncp │ │ ├── thread_ncp_ftd_usb_pitaya_go_v1.3.1.hex │ │ ├── thread_ncp_ftd_usb_pitaya_go_v1.3.1.zip │ │ ├── thread_ncp_ftd_usb_pitaya_go_v1.3.1_mbr.hex │ │ ├── thread_ncp_radio_usb_pitaya_go_v1.3.1.hex │ │ ├── thread_ncp_radio_usb_pitaya_go_v1.3.1.zip │ │ └── thread_ncp_radio_usb_pitaya_go_v1.3.1_mbr.hex ├── pitaya_cli │ ├── pitaya_cli_v1.0.0.hex │ ├── pitaya_cli_v1.0.0.zip │ ├── pitaya_cli_v1.0.0_s140.hex │ └── s140_nrf52_6.1.0_softdevice.zip ├── rssi_viewer │ ├── rssi_viewer_pitaya_go_v1.0.0.hex │ ├── rssi_viewer_pitaya_go_v1.0.0.zip │ └── rssi_viewer_pitaya_go_v1.0.0_mbr.hex └── wifi │ ├── serial_bridge_usb_pitaya_go_v1.0.0.hex │ ├── serial_bridge_usb_pitaya_go_v1.0.0.zip │ └── serial_bridge_usb_pitaya_go_v1.0.0_mbr.hex ├── mkdocs.yml ├── nrf_sdks ├── .gitignore └── README.md └── utils └── wifi ├── .gitignore ├── FW_VERSION ├── README.md ├── Tools ├── gain_builder │ ├── debug_i2c │ │ ├── aardvark.dll │ │ └── gain_builder.exe │ ├── debug_uart │ │ ├── gain_build_and_download.bat │ │ └── gain_builder.exe │ └── gain_sheets │ │ └── atwinc1500_gain_setting_default.csv ├── image_builder │ └── debug │ │ ├── generate_ate_image.bat │ │ ├── generate_normal_image.bat │ │ └── image_builder.exe ├── image_cloner │ ├── debug_i2c │ │ ├── aardvark.dll │ │ └── image_cloner.exe │ └── debug_uart │ │ └── image_cloner.exe ├── image_downloader │ ├── debug_i2c │ │ ├── aardvark.dll │ │ ├── image_downloader.exe │ │ └── run_image_downloader.bat │ └── debug_uart │ │ ├── image_downloader.exe │ │ └── run_image_downloader.bat ├── root_certificate_downloader │ ├── binary │ │ ├── BaltimoreCyberTrustRoot.cer │ │ ├── DigiCert.cer │ │ ├── DigiCertSHA2.cer │ │ ├── EnTrust.cer │ │ ├── GTSGIAG3.cer │ │ ├── GeoTrust.cer │ │ ├── GlobalSignRoot.cer │ │ ├── GlobalSignRoot2.cer │ │ ├── NMA_Root.cer │ │ ├── PROWL_Root.cer │ │ ├── PitayaRoot.cer │ │ ├── QuoVadis_Root.cer │ │ └── VeriSign.cer │ ├── debug_i2c │ │ ├── RootCertDownload.bat │ │ ├── aardvark.dll │ │ └── root_certificate_downloader.exe │ └── debug_uart │ │ ├── RootCertDownload.bat │ │ └── root_certificate_downloader.exe └── tls_cert_flash_tool │ ├── Debug_I2C │ ├── aardvark.dll │ └── tls_cert_flash_tool.exe │ └── Debug_UART │ └── tls_cert_flash_tool.exe ├── ate_firmware └── burst_tx_firmware_winc1500.bin ├── boot_firmware └── release3A0 │ └── boot_firmware.bin ├── download_all.bat ├── downloader_firmware └── release3A0 │ └── downloader_firmware.bin ├── firmware ├── m2m_aio_3a0.bin └── wifi_v111 │ └── ASIC_3A0 │ └── wifi_firmware.bin ├── modify_provisioning_webpage.bat ├── ota_firmware └── m2m_ota_3a0.bin ├── programmer_firmware └── release3A0 │ ├── programmer_firmware.bin │ └── programmer_release_text.bin └── provisioning_webpage ├── default.html └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/README.md -------------------------------------------------------------------------------- /certs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/certs/.gitignore -------------------------------------------------------------------------------- /certs/CA/PitayaRoot.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/certs/CA/PitayaRoot.crt -------------------------------------------------------------------------------- /certs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/certs/README.md -------------------------------------------------------------------------------- /config/custom_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/config/custom_board.h -------------------------------------------------------------------------------- /config/pitaya_go.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/config/pitaya_go.h -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/LICENSE.md -------------------------------------------------------------------------------- /docs/assets/images/amazon_co_uk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/amazon_co_uk.jpg -------------------------------------------------------------------------------- /docs/assets/images/amazon_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/amazon_logo.png -------------------------------------------------------------------------------- /docs/assets/images/assemble-pitaya-go.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/assemble-pitaya-go.gif -------------------------------------------------------------------------------- /docs/assets/images/dfu-procedure-completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/dfu-procedure-completed.png -------------------------------------------------------------------------------- /docs/assets/images/get-the-temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/get-the-temperature.png -------------------------------------------------------------------------------- /docs/assets/images/makerdiary-store-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/makerdiary-store-logo.png -------------------------------------------------------------------------------- /docs/assets/images/nrf-connect-programmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/nrf-connect-programmer.png -------------------------------------------------------------------------------- /docs/assets/images/nrfutil-generate-pkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/nrfutil-generate-pkg.png -------------------------------------------------------------------------------- /docs/assets/images/nrfutil-update-pkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/nrfutil-update-pkg.png -------------------------------------------------------------------------------- /docs/assets/images/ping-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/ping-terminal.png -------------------------------------------------------------------------------- /docs/assets/images/pitaya-go-nfc-url.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/pitaya-go-nfc-url.jpg -------------------------------------------------------------------------------- /docs/assets/images/pitaya-go-product-parts-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/pitaya-go-product-parts-w.png -------------------------------------------------------------------------------- /docs/assets/images/pitaya-go_pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/pitaya-go_pinout.png -------------------------------------------------------------------------------- /docs/assets/images/programmer-device-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/programmer-device-connected.png -------------------------------------------------------------------------------- /docs/assets/images/seeed_logo_2018_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/seeed_logo_2018_horizontal.png -------------------------------------------------------------------------------- /docs/assets/images/select-softdevice-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/select-softdevice-id.png -------------------------------------------------------------------------------- /docs/assets/images/set-the-led-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/set-the-led-color.png -------------------------------------------------------------------------------- /docs/assets/images/set-up-with-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/set-up-with-terminal.png -------------------------------------------------------------------------------- /docs/assets/images/set-up-with-web-device-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/set-up-with-web-device-cli.png -------------------------------------------------------------------------------- /docs/assets/images/taobao-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/taobao-logo.png -------------------------------------------------------------------------------- /docs/assets/images/tindie-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/tindie-logo.png -------------------------------------------------------------------------------- /docs/assets/images/wifi-scan-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/assets/images/wifi-scan-terminal.png -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/hw/pitaya-go_3d_v1_0.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/hw/pitaya-go_3d_v1_0.step -------------------------------------------------------------------------------- /docs/hw/pitaya-go_board_file_v1_0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/hw/pitaya-go_board_file_v1_0.pdf -------------------------------------------------------------------------------- /docs/hw/pitaya-go_pinout_v1_0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/hw/pitaya-go_pinout_v1_0.pdf -------------------------------------------------------------------------------- /docs/hw/pitaya-go_schematic_v1_0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/hw/pitaya-go_schematic_v1_0.pdf -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/nrf5-sdk/assets/images/building-hello-world-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/assets/images/building-hello-world-example.png -------------------------------------------------------------------------------- /docs/nrf5-sdk/assets/images/hello-world-board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/assets/images/hello-world-board.jpg -------------------------------------------------------------------------------- /docs/nrf5-sdk/assets/images/nRF5-SDK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/assets/images/nRF5-SDK.png -------------------------------------------------------------------------------- /docs/nrf5-sdk/assets/images/printing-hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/assets/images/printing-hello-world.png -------------------------------------------------------------------------------- /docs/nrf5-sdk/assets/images/programming-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/assets/images/programming-example.png -------------------------------------------------------------------------------- /docs/nrf5-sdk/ble/assets/images/ble-app-bas-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/ble/assets/images/ble-app-bas-example.jpg -------------------------------------------------------------------------------- /docs/nrf5-sdk/ble/assets/images/ble-app-beacon-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/ble/assets/images/ble-app-beacon-example.jpg -------------------------------------------------------------------------------- /docs/nrf5-sdk/ble/assets/images/ble-app-blinky-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/ble/assets/images/ble-app-blinky-example.jpg -------------------------------------------------------------------------------- /docs/nrf5-sdk/ble/assets/images/ble-app-hids-keyboard-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/ble/assets/images/ble-app-hids-keyboard-example.png -------------------------------------------------------------------------------- /docs/nrf5-sdk/ble/assets/images/ble-app-hrs-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/ble/assets/images/ble-app-hrs-example.jpg -------------------------------------------------------------------------------- /docs/nrf5-sdk/ble/assets/images/ble-app-hrs-webbluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/ble/assets/images/ble-app-hrs-webbluetooth.png -------------------------------------------------------------------------------- /docs/nrf5-sdk/ble/assets/images/bluetooth-preferences-keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/ble/assets/images/bluetooth-preferences-keyboard.png -------------------------------------------------------------------------------- /docs/nrf5-sdk/ble/assets/images/bluetooth-preferences-mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/ble/assets/images/bluetooth-preferences-mouse.png -------------------------------------------------------------------------------- /docs/nrf5-sdk/ble/ble-bas-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/ble/ble-bas-example.md -------------------------------------------------------------------------------- /docs/nrf5-sdk/ble/ble-beacon-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/ble/ble-beacon-example.md -------------------------------------------------------------------------------- /docs/nrf5-sdk/ble/ble-blinky-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/ble/ble-blinky-example.md -------------------------------------------------------------------------------- /docs/nrf5-sdk/ble/ble-hids-keyboard-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/ble/ble-hids-keyboard-example.md -------------------------------------------------------------------------------- /docs/nrf5-sdk/ble/ble-hids-mouse-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/ble/ble-hids-mouse-example.md -------------------------------------------------------------------------------- /docs/nrf5-sdk/ble/ble-hrs-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/ble/ble-hrs-example.md -------------------------------------------------------------------------------- /docs/nrf5-sdk/build-n-run-a-first-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/build-n-run-a-first-example.md -------------------------------------------------------------------------------- /docs/nrf5-sdk/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/index.md -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/assets/images/battery-status-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/assets/images/battery-status-example.png -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/assets/images/blinky-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/assets/images/blinky-example.jpg -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/assets/images/button-example-board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/assets/images/button-example-board.jpg -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/assets/images/button-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/assets/images/button-example.png -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/assets/images/install-rssi-viewer-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/assets/images/install-rssi-viewer-app.png -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/assets/images/nfc-example-board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/assets/images/nfc-example-board.jpg -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/assets/images/pitaya-go-nfc-url.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/assets/images/pitaya-go-nfc-url.jpg -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/assets/images/power-profiling-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/assets/images/power-profiling-setup.png -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/assets/images/qspi-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/assets/images/qspi-example.png -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/assets/images/rssi-viewer-connecting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/assets/images/rssi-viewer-connecting.png -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/assets/images/rssi-viewer-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/assets/images/rssi-viewer-example.png -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/assets/images/temperature-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/assets/images/temperature-example.png -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/battery-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/battery-example.md -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/blinky-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/blinky-example.md -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/button-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/button-example.md -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/nfc-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/nfc-example.md -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/power-profiler-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/power-profiler-example.md -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/qspi-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/qspi-example.md -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/rssi-viewer-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/rssi-viewer-example.md -------------------------------------------------------------------------------- /docs/nrf5-sdk/peripheral/temperature-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/peripheral/temperature-example.md -------------------------------------------------------------------------------- /docs/nrf5-sdk/setup-the-nrf5-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/nrf5-sdk/setup-the-nrf5-sdk.md -------------------------------------------------------------------------------- /docs/openthread/assets/images/adding-device-via-qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/assets/images/adding-device-via-qrcode.png -------------------------------------------------------------------------------- /docs/openthread/assets/images/building-openthread-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/assets/images/building-openthread-cli.png -------------------------------------------------------------------------------- /docs/openthread/assets/images/checking-wpanctl-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/assets/images/checking-wpanctl-status.png -------------------------------------------------------------------------------- /docs/openthread/assets/images/connect-to-border-router.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/assets/images/connect-to-border-router.png -------------------------------------------------------------------------------- /docs/openthread/assets/images/form_n_check_thread_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/assets/images/form_n_check_thread_network.png -------------------------------------------------------------------------------- /docs/openthread/assets/images/nrf-thread-topology-monitor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/assets/images/nrf-thread-topology-monitor.jpg -------------------------------------------------------------------------------- /docs/openthread/assets/images/ot-arch_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/assets/images/ot-arch_2x.png -------------------------------------------------------------------------------- /docs/openthread/assets/images/otbr-arch-borderagent_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/assets/images/otbr-arch-borderagent_2x.png -------------------------------------------------------------------------------- /docs/openthread/assets/images/otbr-hw-parts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/assets/images/otbr-hw-parts.jpg -------------------------------------------------------------------------------- /docs/openthread/assets/images/otbr-web-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/assets/images/otbr-web-gui.png -------------------------------------------------------------------------------- /docs/openthread/assets/images/run-the-sniffer-with-wireshark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/assets/images/run-the-sniffer-with-wireshark.png -------------------------------------------------------------------------------- /docs/openthread/assets/images/setup-otbr-hw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/assets/images/setup-otbr-hw.jpg -------------------------------------------------------------------------------- /docs/openthread/assets/images/wireshark-6lowpan-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/assets/images/wireshark-6lowpan-configuration.png -------------------------------------------------------------------------------- /docs/openthread/assets/images/wireshark-ieee802154-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/assets/images/wireshark-ieee802154-configuration.png -------------------------------------------------------------------------------- /docs/openthread/assets/images/wireshark-sniffing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/assets/images/wireshark-sniffing.png -------------------------------------------------------------------------------- /docs/openthread/assets/images/wireshark-thread-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/assets/images/wireshark-thread-configuration.png -------------------------------------------------------------------------------- /docs/openthread/assets/js/jquery.qrcode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/assets/js/jquery.qrcode.min.js -------------------------------------------------------------------------------- /docs/openthread/build-n-run-thread-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/build-n-run-thread-example.md -------------------------------------------------------------------------------- /docs/openthread/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/getting-started.md -------------------------------------------------------------------------------- /docs/openthread/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/index.md -------------------------------------------------------------------------------- /docs/openthread/openthread-border-router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/openthread-border-router.md -------------------------------------------------------------------------------- /docs/openthread/setup-the-thread-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/setup-the-thread-sdk.md -------------------------------------------------------------------------------- /docs/openthread/thread-network-sniffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/thread-network-sniffer.md -------------------------------------------------------------------------------- /docs/openthread/thread-topology-monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/openthread/thread-topology-monitor.md -------------------------------------------------------------------------------- /docs/programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/programming.md -------------------------------------------------------------------------------- /docs/where-to-buy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/where-to-buy.md -------------------------------------------------------------------------------- /docs/wifi/advanced/assets/images/mqtt-client-example-jsutility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/advanced/assets/images/mqtt-client-example-jsutility.png -------------------------------------------------------------------------------- /docs/wifi/advanced/assets/images/mqtt-client-example-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/advanced/assets/images/mqtt-client-example-terminal.png -------------------------------------------------------------------------------- /docs/wifi/advanced/assets/images/mqtt-client-example-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/advanced/assets/images/mqtt-client-example-web.png -------------------------------------------------------------------------------- /docs/wifi/advanced/assets/images/ssl-connect-example-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/advanced/assets/images/ssl-connect-example-terminal.png -------------------------------------------------------------------------------- /docs/wifi/advanced/assets/images/ssl-connect-example-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/advanced/assets/images/ssl-connect-example-web.png -------------------------------------------------------------------------------- /docs/wifi/advanced/assets/images/weather-client-example-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/advanced/assets/images/weather-client-example-terminal.png -------------------------------------------------------------------------------- /docs/wifi/advanced/assets/images/weather-client-example-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/advanced/assets/images/weather-client-example-web.png -------------------------------------------------------------------------------- /docs/wifi/advanced/mqtt-client-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/advanced/mqtt-client-example.md -------------------------------------------------------------------------------- /docs/wifi/advanced/ssl-connect-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/advanced/ssl-connect-example.md -------------------------------------------------------------------------------- /docs/wifi/advanced/weather-client-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/advanced/weather-client-example.md -------------------------------------------------------------------------------- /docs/wifi/basic/ap-scan-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/ap-scan-example.md -------------------------------------------------------------------------------- /docs/wifi/basic/assets/images/ap-scan-example-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/assets/images/ap-scan-example-terminal.png -------------------------------------------------------------------------------- /docs/wifi/basic/assets/images/ap-scan-example-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/assets/images/ap-scan-example-web.png -------------------------------------------------------------------------------- /docs/wifi/basic/assets/images/chip-info-example-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/assets/images/chip-info-example-terminal.png -------------------------------------------------------------------------------- /docs/wifi/basic/assets/images/chip-info-example-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/assets/images/chip-info-example-web.png -------------------------------------------------------------------------------- /docs/wifi/basic/assets/images/mac-address-example-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/assets/images/mac-address-example-terminal.png -------------------------------------------------------------------------------- /docs/wifi/basic/assets/images/mac-address-example-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/assets/images/mac-address-example-web.png -------------------------------------------------------------------------------- /docs/wifi/basic/assets/images/mode-ap-example-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/assets/images/mode-ap-example-terminal.png -------------------------------------------------------------------------------- /docs/wifi/basic/assets/images/mode-ap-example-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/assets/images/mode-ap-example-web.png -------------------------------------------------------------------------------- /docs/wifi/basic/assets/images/mode-sta-example-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/assets/images/mode-sta-example-terminal.png -------------------------------------------------------------------------------- /docs/wifi/basic/assets/images/mode-sta-example-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/assets/images/mode-sta-example-web.png -------------------------------------------------------------------------------- /docs/wifi/basic/assets/images/power-profiling-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/assets/images/power-profiling-setup.png -------------------------------------------------------------------------------- /docs/wifi/basic/assets/images/power-save-mode-example-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/assets/images/power-save-mode-example-terminal.png -------------------------------------------------------------------------------- /docs/wifi/basic/assets/images/power-save-mode-example-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/assets/images/power-save-mode-example-web.png -------------------------------------------------------------------------------- /docs/wifi/basic/assets/images/provision-http-example-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/assets/images/provision-http-example-mobile.jpg -------------------------------------------------------------------------------- /docs/wifi/basic/assets/images/provision-http-example-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/assets/images/provision-http-example-terminal.png -------------------------------------------------------------------------------- /docs/wifi/basic/assets/images/provision-http-example-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/assets/images/provision-http-example-web.png -------------------------------------------------------------------------------- /docs/wifi/basic/assets/images/signal-strength-example-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/assets/images/signal-strength-example-terminal.png -------------------------------------------------------------------------------- /docs/wifi/basic/assets/images/signal-strength-example-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/assets/images/signal-strength-example-web.png -------------------------------------------------------------------------------- /docs/wifi/basic/chip-info-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/chip-info-example.md -------------------------------------------------------------------------------- /docs/wifi/basic/mac-address-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/mac-address-example.md -------------------------------------------------------------------------------- /docs/wifi/basic/mode-ap-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/mode-ap-example.md -------------------------------------------------------------------------------- /docs/wifi/basic/mode-sta-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/mode-sta-example.md -------------------------------------------------------------------------------- /docs/wifi/basic/power-mode-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/power-mode-example.md -------------------------------------------------------------------------------- /docs/wifi/basic/provision-http-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/provision-http-example.md -------------------------------------------------------------------------------- /docs/wifi/basic/signal-strength-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/basic/signal-strength-example.md -------------------------------------------------------------------------------- /docs/wifi/create-tls-certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/create-tls-certificates.md -------------------------------------------------------------------------------- /docs/wifi/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/index.md -------------------------------------------------------------------------------- /docs/wifi/protocol/assets/images/ping-example-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/protocol/assets/images/ping-example-terminal.png -------------------------------------------------------------------------------- /docs/wifi/protocol/assets/images/ping-example-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/protocol/assets/images/ping-example-web.png -------------------------------------------------------------------------------- /docs/wifi/protocol/assets/images/tcp-client-example-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/protocol/assets/images/tcp-client-example-terminal.png -------------------------------------------------------------------------------- /docs/wifi/protocol/assets/images/tcp-client-example-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/protocol/assets/images/tcp-client-example-web.png -------------------------------------------------------------------------------- /docs/wifi/protocol/assets/images/tcp-server-example-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/protocol/assets/images/tcp-server-example-terminal.png -------------------------------------------------------------------------------- /docs/wifi/protocol/assets/images/tcp-server-example-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/protocol/assets/images/tcp-server-example-web.png -------------------------------------------------------------------------------- /docs/wifi/protocol/assets/images/time-client-example-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/protocol/assets/images/time-client-example-terminal.png -------------------------------------------------------------------------------- /docs/wifi/protocol/assets/images/time-client-example-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/protocol/assets/images/time-client-example-web.png -------------------------------------------------------------------------------- /docs/wifi/protocol/assets/images/udp-client-example-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/protocol/assets/images/udp-client-example-terminal.png -------------------------------------------------------------------------------- /docs/wifi/protocol/assets/images/udp-client-example-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/protocol/assets/images/udp-client-example-web.png -------------------------------------------------------------------------------- /docs/wifi/protocol/assets/images/udp-server-example-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/protocol/assets/images/udp-server-example-terminal.png -------------------------------------------------------------------------------- /docs/wifi/protocol/assets/images/udp-server-example-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/protocol/assets/images/udp-server-example-web.png -------------------------------------------------------------------------------- /docs/wifi/protocol/ping-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/protocol/ping-example.md -------------------------------------------------------------------------------- /docs/wifi/protocol/tcp-client-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/protocol/tcp-client-example.md -------------------------------------------------------------------------------- /docs/wifi/protocol/tcp-server-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/protocol/tcp-server-example.md -------------------------------------------------------------------------------- /docs/wifi/protocol/time-client-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/protocol/time-client-example.md -------------------------------------------------------------------------------- /docs/wifi/protocol/udp-client-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/protocol/udp-client-example.md -------------------------------------------------------------------------------- /docs/wifi/protocol/udp-server-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/protocol/udp-server-example.md -------------------------------------------------------------------------------- /docs/wifi/update/assets/images/download-procedure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/update/assets/images/download-procedure.png -------------------------------------------------------------------------------- /docs/wifi/update/assets/images/download-root-certificates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/update/assets/images/download-root-certificates.jpg -------------------------------------------------------------------------------- /docs/wifi/update/assets/images/download-tls-certificates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/update/assets/images/download-tls-certificates.jpg -------------------------------------------------------------------------------- /docs/wifi/update/assets/images/download-wifi-firmware-passed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/update/assets/images/download-wifi-firmware-passed.jpg -------------------------------------------------------------------------------- /docs/wifi/update/assets/images/modify-provisioning-webpage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/update/assets/images/modify-provisioning-webpage.jpg -------------------------------------------------------------------------------- /docs/wifi/update/customize-provisioning-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/update/customize-provisioning-page.md -------------------------------------------------------------------------------- /docs/wifi/update/download-firmware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/update/download-firmware.md -------------------------------------------------------------------------------- /docs/wifi/update/download-root-certs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/update/download-root-certs.md -------------------------------------------------------------------------------- /docs/wifi/update/download-tls-certs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/update/download-tls-certs.md -------------------------------------------------------------------------------- /docs/wifi/update/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/update/index.md -------------------------------------------------------------------------------- /docs/wifi/update/modify-gain-values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/docs/wifi/update/modify-gain-values.md -------------------------------------------------------------------------------- /examples/ble/ble_app_bas/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_bas/armgcc/Makefile -------------------------------------------------------------------------------- /examples/ble/ble_app_bas/armgcc/ble_app_bas_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_bas/armgcc/ble_app_bas_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/ble/ble_app_bas/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_bas/config/sdk_config.h -------------------------------------------------------------------------------- /examples/ble/ble_app_bas/hex/ble_app_bas_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_bas/hex/ble_app_bas_pitaya_go.hex -------------------------------------------------------------------------------- /examples/ble/ble_app_bas/hex/ble_app_bas_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_bas/hex/ble_app_bas_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/ble/ble_app_bas/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_bas/main.c -------------------------------------------------------------------------------- /examples/ble/ble_app_beacon/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_beacon/armgcc/Makefile -------------------------------------------------------------------------------- /examples/ble/ble_app_beacon/armgcc/ble_app_beacon_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_beacon/armgcc/ble_app_beacon_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/ble/ble_app_beacon/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_beacon/config/sdk_config.h -------------------------------------------------------------------------------- /examples/ble/ble_app_beacon/hex/ble_app_beacon_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_beacon/hex/ble_app_beacon_pitaya_go.hex -------------------------------------------------------------------------------- /examples/ble/ble_app_beacon/hex/ble_app_beacon_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_beacon/hex/ble_app_beacon_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/ble/ble_app_beacon/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_beacon/main.c -------------------------------------------------------------------------------- /examples/ble/ble_app_blinky/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_blinky/armgcc/Makefile -------------------------------------------------------------------------------- /examples/ble/ble_app_blinky/armgcc/ble_app_blinky_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_blinky/armgcc/ble_app_blinky_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/ble/ble_app_blinky/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_blinky/config/sdk_config.h -------------------------------------------------------------------------------- /examples/ble/ble_app_blinky/hex/ble_app_blinky_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_blinky/hex/ble_app_blinky_pitaya_go.hex -------------------------------------------------------------------------------- /examples/ble/ble_app_blinky/hex/ble_app_blinky_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_blinky/hex/ble_app_blinky_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/ble/ble_app_blinky/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_blinky/main.c -------------------------------------------------------------------------------- /examples/ble/ble_app_hids_keyboard/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_hids_keyboard/armgcc/Makefile -------------------------------------------------------------------------------- /examples/ble/ble_app_hids_keyboard/armgcc/ble_app_hids_keyboard_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_hids_keyboard/armgcc/ble_app_hids_keyboard_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/ble/ble_app_hids_keyboard/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_hids_keyboard/config/sdk_config.h -------------------------------------------------------------------------------- /examples/ble/ble_app_hids_keyboard/hex/ble_app_hids_keyboard_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_hids_keyboard/hex/ble_app_hids_keyboard_pitaya_go.hex -------------------------------------------------------------------------------- /examples/ble/ble_app_hids_keyboard/hex/ble_app_hids_keyboard_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_hids_keyboard/hex/ble_app_hids_keyboard_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/ble/ble_app_hids_keyboard/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_hids_keyboard/main.c -------------------------------------------------------------------------------- /examples/ble/ble_app_hids_mouse/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_hids_mouse/armgcc/Makefile -------------------------------------------------------------------------------- /examples/ble/ble_app_hids_mouse/armgcc/ble_app_hids_mouse_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_hids_mouse/armgcc/ble_app_hids_mouse_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/ble/ble_app_hids_mouse/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_hids_mouse/config/sdk_config.h -------------------------------------------------------------------------------- /examples/ble/ble_app_hids_mouse/hex/ble_app_hids_mouse_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_hids_mouse/hex/ble_app_hids_mouse_pitaya_go.hex -------------------------------------------------------------------------------- /examples/ble/ble_app_hids_mouse/hex/ble_app_hids_mouse_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_hids_mouse/hex/ble_app_hids_mouse_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/ble/ble_app_hids_mouse/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_hids_mouse/main.c -------------------------------------------------------------------------------- /examples/ble/ble_app_hrs/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_hrs/armgcc/Makefile -------------------------------------------------------------------------------- /examples/ble/ble_app_hrs/armgcc/ble_app_hrs_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_hrs/armgcc/ble_app_hrs_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/ble/ble_app_hrs/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_hrs/config/sdk_config.h -------------------------------------------------------------------------------- /examples/ble/ble_app_hrs/hex/ble_app_hrs_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_hrs/hex/ble_app_hrs_pitaya_go.hex -------------------------------------------------------------------------------- /examples/ble/ble_app_hrs/hex/ble_app_hrs_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_hrs/hex/ble_app_hrs_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/ble/ble_app_hrs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_hrs/main.c -------------------------------------------------------------------------------- /examples/ble/ble_app_template/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_template/armgcc/Makefile -------------------------------------------------------------------------------- /examples/ble/ble_app_template/armgcc/ble_app_template_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_template/armgcc/ble_app_template_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/ble/ble_app_template/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_template/config/sdk_config.h -------------------------------------------------------------------------------- /examples/ble/ble_app_template/hex/ble_app_template_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_template/hex/ble_app_template_pitaya_go.hex -------------------------------------------------------------------------------- /examples/ble/ble_app_template/hex/ble_app_template_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_template/hex/ble_app_template_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/ble/ble_app_template/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_app_template/main.c -------------------------------------------------------------------------------- /examples/ble/ble_connectivity/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_connectivity/armgcc/Makefile -------------------------------------------------------------------------------- /examples/ble/ble_connectivity/armgcc/ble_connectivity_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_connectivity/armgcc/ble_connectivity_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/ble/ble_connectivity/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_connectivity/config/sdk_config.h -------------------------------------------------------------------------------- /examples/ble/ble_connectivity/hex/ble_connectivity_usb_hci_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_connectivity/hex/ble_connectivity_usb_hci_pitaya_go.hex -------------------------------------------------------------------------------- /examples/ble/ble_connectivity/hex/ble_connectivity_usb_hci_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_connectivity/hex/ble_connectivity_usb_hci_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/ble/ble_connectivity/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/ble/ble_connectivity/main.c -------------------------------------------------------------------------------- /examples/common/console_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/common/console_log.c -------------------------------------------------------------------------------- /examples/open_bootloader/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore the private key in this directory 2 | 3 | *.pem 4 | -------------------------------------------------------------------------------- /examples/open_bootloader/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/open_bootloader/armgcc/Makefile -------------------------------------------------------------------------------- /examples/open_bootloader/armgcc/open_bootloader_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/open_bootloader/armgcc/open_bootloader_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/open_bootloader/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/open_bootloader/config/sdk_config.h -------------------------------------------------------------------------------- /examples/open_bootloader/dfu_public_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/open_bootloader/dfu_public_key.c -------------------------------------------------------------------------------- /examples/open_bootloader/hex/open_bootloader_pitaya_go_v1.0.0.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/open_bootloader/hex/open_bootloader_pitaya_go_v1.0.0.hex -------------------------------------------------------------------------------- /examples/open_bootloader/hex/open_bootloader_pitaya_go_v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/open_bootloader/hex/open_bootloader_pitaya_go_v1.0.0.zip -------------------------------------------------------------------------------- /examples/open_bootloader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/open_bootloader/main.c -------------------------------------------------------------------------------- /examples/openthread/cli/ftd/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/cli/ftd/armgcc/Makefile -------------------------------------------------------------------------------- /examples/openthread/cli/ftd/armgcc/thread_cli_ftd_usb_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/cli/ftd/armgcc/thread_cli_ftd_usb_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/openthread/cli/ftd/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/cli/ftd/config/sdk_config.h -------------------------------------------------------------------------------- /examples/openthread/cli/ftd/hex/thread_cli_ftd_usb_pitaya_go_v1.3.1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/cli/ftd/hex/thread_cli_ftd_usb_pitaya_go_v1.3.1.hex -------------------------------------------------------------------------------- /examples/openthread/cli/ftd/hex/thread_cli_ftd_usb_pitaya_go_v1.3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/cli/ftd/hex/thread_cli_ftd_usb_pitaya_go_v1.3.1.zip -------------------------------------------------------------------------------- /examples/openthread/cli/ftd/hex/thread_cli_ftd_usb_pitaya_go_v1.3.1_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/cli/ftd/hex/thread_cli_ftd_usb_pitaya_go_v1.3.1_mbr.hex -------------------------------------------------------------------------------- /examples/openthread/cli/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/cli/main.c -------------------------------------------------------------------------------- /examples/openthread/cli/mtd/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/cli/mtd/armgcc/Makefile -------------------------------------------------------------------------------- /examples/openthread/cli/mtd/armgcc/thread_cli_mtd_usb_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/cli/mtd/armgcc/thread_cli_mtd_usb_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/openthread/cli/mtd/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/cli/mtd/config/sdk_config.h -------------------------------------------------------------------------------- /examples/openthread/cli/mtd/hex/thread_cli_mtd_usb_pitaya_go_v1.3.1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/cli/mtd/hex/thread_cli_mtd_usb_pitaya_go_v1.3.1.hex -------------------------------------------------------------------------------- /examples/openthread/cli/mtd/hex/thread_cli_mtd_usb_pitaya_go_v1.3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/cli/mtd/hex/thread_cli_mtd_usb_pitaya_go_v1.3.1.zip -------------------------------------------------------------------------------- /examples/openthread/cli/mtd/hex/thread_cli_mtd_usb_pitaya_go_v1.3.1_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/cli/mtd/hex/thread_cli_mtd_usb_pitaya_go_v1.3.1_mbr.hex -------------------------------------------------------------------------------- /examples/openthread/ncp/ftd/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/ncp/ftd/armgcc/Makefile -------------------------------------------------------------------------------- /examples/openthread/ncp/ftd/armgcc/thread_ncp_ftd_usb_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/ncp/ftd/armgcc/thread_ncp_ftd_usb_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/openthread/ncp/ftd/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/ncp/ftd/config/sdk_config.h -------------------------------------------------------------------------------- /examples/openthread/ncp/ftd/hex/thread_ncp_ftd_usb_pitaya_go_v1.3.1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/ncp/ftd/hex/thread_ncp_ftd_usb_pitaya_go_v1.3.1.hex -------------------------------------------------------------------------------- /examples/openthread/ncp/ftd/hex/thread_ncp_ftd_usb_pitaya_go_v1.3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/ncp/ftd/hex/thread_ncp_ftd_usb_pitaya_go_v1.3.1.zip -------------------------------------------------------------------------------- /examples/openthread/ncp/ftd/hex/thread_ncp_ftd_usb_pitaya_go_v1.3.1_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/ncp/ftd/hex/thread_ncp_ftd_usb_pitaya_go_v1.3.1_mbr.hex -------------------------------------------------------------------------------- /examples/openthread/ncp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/ncp/main.c -------------------------------------------------------------------------------- /examples/openthread/ncp/radio/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/ncp/radio/armgcc/Makefile -------------------------------------------------------------------------------- /examples/openthread/ncp/radio/armgcc/thread_ncp_radio_usb_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/ncp/radio/armgcc/thread_ncp_radio_usb_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/openthread/ncp/radio/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/ncp/radio/config/sdk_config.h -------------------------------------------------------------------------------- /examples/openthread/ncp/radio/hex/thread_ncp_radio_usb_pitaya_go_v1.3.1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/ncp/radio/hex/thread_ncp_radio_usb_pitaya_go_v1.3.1.hex -------------------------------------------------------------------------------- /examples/openthread/ncp/radio/hex/thread_ncp_radio_usb_pitaya_go_v1.3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/ncp/radio/hex/thread_ncp_radio_usb_pitaya_go_v1.3.1.zip -------------------------------------------------------------------------------- /examples/openthread/ncp/radio/hex/thread_ncp_radio_usb_pitaya_go_v1.3.1_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/openthread/ncp/radio/hex/thread_ncp_radio_usb_pitaya_go_v1.3.1_mbr.hex -------------------------------------------------------------------------------- /examples/peripheral/battery_status/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/battery_status/armgcc/Makefile -------------------------------------------------------------------------------- /examples/peripheral/battery_status/armgcc/battery_status_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/battery_status/armgcc/battery_status_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/peripheral/battery_status/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/battery_status/config/sdk_config.h -------------------------------------------------------------------------------- /examples/peripheral/battery_status/hex/battery_status_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/battery_status/hex/battery_status_pitaya_go.hex -------------------------------------------------------------------------------- /examples/peripheral/battery_status/hex/battery_status_pitaya_go_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/battery_status/hex/battery_status_pitaya_go_mbr.hex -------------------------------------------------------------------------------- /examples/peripheral/battery_status/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/battery_status/main.c -------------------------------------------------------------------------------- /examples/peripheral/blinky/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/blinky/armgcc/Makefile -------------------------------------------------------------------------------- /examples/peripheral/blinky/armgcc/blinky_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/blinky/armgcc/blinky_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/peripheral/blinky/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/blinky/config/sdk_config.h -------------------------------------------------------------------------------- /examples/peripheral/blinky/hex/blinky_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/blinky/hex/blinky_pitaya_go.hex -------------------------------------------------------------------------------- /examples/peripheral/blinky/hex/blinky_pitaya_go_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/blinky/hex/blinky_pitaya_go_mbr.hex -------------------------------------------------------------------------------- /examples/peripheral/blinky/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/blinky/main.c -------------------------------------------------------------------------------- /examples/peripheral/button/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/button/armgcc/Makefile -------------------------------------------------------------------------------- /examples/peripheral/button/armgcc/button_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/button/armgcc/button_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/peripheral/button/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/button/config/sdk_config.h -------------------------------------------------------------------------------- /examples/peripheral/button/hex/button_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/button/hex/button_pitaya_go.hex -------------------------------------------------------------------------------- /examples/peripheral/button/hex/button_pitaya_go_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/button/hex/button_pitaya_go_mbr.hex -------------------------------------------------------------------------------- /examples/peripheral/button/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/button/main.c -------------------------------------------------------------------------------- /examples/peripheral/hello_world/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/hello_world/armgcc/Makefile -------------------------------------------------------------------------------- /examples/peripheral/hello_world/armgcc/hello_world_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/hello_world/armgcc/hello_world_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/peripheral/hello_world/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/hello_world/config/sdk_config.h -------------------------------------------------------------------------------- /examples/peripheral/hello_world/hex/hello_world_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/hello_world/hex/hello_world_pitaya_go.hex -------------------------------------------------------------------------------- /examples/peripheral/hello_world/hex/hello_world_pitaya_go_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/hello_world/hex/hello_world_pitaya_go_mbr.hex -------------------------------------------------------------------------------- /examples/peripheral/hello_world/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/hello_world/main.c -------------------------------------------------------------------------------- /examples/peripheral/low_power_pwm/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/low_power_pwm/armgcc/Makefile -------------------------------------------------------------------------------- /examples/peripheral/low_power_pwm/armgcc/low_power_pwm_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/low_power_pwm/armgcc/low_power_pwm_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/peripheral/low_power_pwm/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/low_power_pwm/config/sdk_config.h -------------------------------------------------------------------------------- /examples/peripheral/low_power_pwm/hex/low_power_pwm_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/low_power_pwm/hex/low_power_pwm_pitaya_go.hex -------------------------------------------------------------------------------- /examples/peripheral/low_power_pwm/hex/low_power_pwm_pitaya_go_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/low_power_pwm/hex/low_power_pwm_pitaya_go_mbr.hex -------------------------------------------------------------------------------- /examples/peripheral/low_power_pwm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/low_power_pwm/main.c -------------------------------------------------------------------------------- /examples/peripheral/nfc/record_launch_app/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/nfc/record_launch_app/armgcc/Makefile -------------------------------------------------------------------------------- /examples/peripheral/nfc/record_launch_app/armgcc/nfc_launchapp_record_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/nfc/record_launch_app/armgcc/nfc_launchapp_record_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/peripheral/nfc/record_launch_app/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/nfc/record_launch_app/config/sdk_config.h -------------------------------------------------------------------------------- /examples/peripheral/nfc/record_launch_app/hex/nfc_launchapp_record_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/nfc/record_launch_app/hex/nfc_launchapp_record_pitaya_go.hex -------------------------------------------------------------------------------- /examples/peripheral/nfc/record_launch_app/hex/nfc_launchapp_record_pitaya_go_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/nfc/record_launch_app/hex/nfc_launchapp_record_pitaya_go_mbr.hex -------------------------------------------------------------------------------- /examples/peripheral/nfc/record_launch_app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/nfc/record_launch_app/main.c -------------------------------------------------------------------------------- /examples/peripheral/nfc/record_url/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/nfc/record_url/armgcc/Makefile -------------------------------------------------------------------------------- /examples/peripheral/nfc/record_url/armgcc/nfc_url_record_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/nfc/record_url/armgcc/nfc_url_record_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/peripheral/nfc/record_url/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/nfc/record_url/config/sdk_config.h -------------------------------------------------------------------------------- /examples/peripheral/nfc/record_url/hex/nfc_url_record_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/nfc/record_url/hex/nfc_url_record_pitaya_go.hex -------------------------------------------------------------------------------- /examples/peripheral/nfc/record_url/hex/nfc_url_record_pitaya_go_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/nfc/record_url/hex/nfc_url_record_pitaya_go_mbr.hex -------------------------------------------------------------------------------- /examples/peripheral/nfc/record_url/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/nfc/record_url/main.c -------------------------------------------------------------------------------- /examples/peripheral/power_profile/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/power_profile/armgcc/Makefile -------------------------------------------------------------------------------- /examples/peripheral/power_profile/armgcc/power_profile_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/power_profile/armgcc/power_profile_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/peripheral/power_profile/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/power_profile/config/sdk_config.h -------------------------------------------------------------------------------- /examples/peripheral/power_profile/hex/power_profile_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/power_profile/hex/power_profile_pitaya_go.hex -------------------------------------------------------------------------------- /examples/peripheral/power_profile/hex/power_profile_pitaya_go_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/power_profile/hex/power_profile_pitaya_go_mbr.hex -------------------------------------------------------------------------------- /examples/peripheral/power_profile/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/power_profile/main.c -------------------------------------------------------------------------------- /examples/peripheral/qspi/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/qspi/armgcc/Makefile -------------------------------------------------------------------------------- /examples/peripheral/qspi/armgcc/qspi_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/qspi/armgcc/qspi_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/peripheral/qspi/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/qspi/config/sdk_config.h -------------------------------------------------------------------------------- /examples/peripheral/qspi/hex/qspi_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/qspi/hex/qspi_pitaya_go.hex -------------------------------------------------------------------------------- /examples/peripheral/qspi/hex/qspi_pitaya_go_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/qspi/hex/qspi_pitaya_go_mbr.hex -------------------------------------------------------------------------------- /examples/peripheral/qspi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/qspi/main.c -------------------------------------------------------------------------------- /examples/peripheral/rssi_viewer/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/rssi_viewer/armgcc/Makefile -------------------------------------------------------------------------------- /examples/peripheral/rssi_viewer/armgcc/rssi_viewer_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/rssi_viewer/armgcc/rssi_viewer_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/peripheral/rssi_viewer/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/rssi_viewer/config/sdk_config.h -------------------------------------------------------------------------------- /examples/peripheral/rssi_viewer/hex/rssi_viewer_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/rssi_viewer/hex/rssi_viewer_pitaya_go.hex -------------------------------------------------------------------------------- /examples/peripheral/rssi_viewer/hex/rssi_viewer_pitaya_go_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/rssi_viewer/hex/rssi_viewer_pitaya_go_mbr.hex -------------------------------------------------------------------------------- /examples/peripheral/rssi_viewer/hex/rssi_viewer_pitaya_go_v1.0.0.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/rssi_viewer/hex/rssi_viewer_pitaya_go_v1.0.0.hex -------------------------------------------------------------------------------- /examples/peripheral/rssi_viewer/hex/rssi_viewer_pitaya_go_v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/rssi_viewer/hex/rssi_viewer_pitaya_go_v1.0.0.zip -------------------------------------------------------------------------------- /examples/peripheral/rssi_viewer/hex/rssi_viewer_pitaya_go_v1.0.0_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/rssi_viewer/hex/rssi_viewer_pitaya_go_v1.0.0_mbr.hex -------------------------------------------------------------------------------- /examples/peripheral/rssi_viewer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/rssi_viewer/main.c -------------------------------------------------------------------------------- /examples/peripheral/temperature/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/temperature/armgcc/Makefile -------------------------------------------------------------------------------- /examples/peripheral/temperature/armgcc/temperature_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/temperature/armgcc/temperature_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/peripheral/temperature/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/temperature/config/sdk_config.h -------------------------------------------------------------------------------- /examples/peripheral/temperature/hex/temperature_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/temperature/hex/temperature_pitaya_go.hex -------------------------------------------------------------------------------- /examples/peripheral/temperature/hex/temperature_pitaya_go_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/temperature/hex/temperature_pitaya_go_mbr.hex -------------------------------------------------------------------------------- /examples/peripheral/temperature/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/peripheral/temperature/main.c -------------------------------------------------------------------------------- /examples/pitaya_cli/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/pitaya_cli/armgcc/Makefile -------------------------------------------------------------------------------- /examples/pitaya_cli/armgcc/pitaya_cli_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/pitaya_cli/armgcc/pitaya_cli_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/pitaya_cli/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/pitaya_cli/config/sdk_config.h -------------------------------------------------------------------------------- /examples/pitaya_cli/hex/pitaya_cli_v1.0.0.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/pitaya_cli/hex/pitaya_cli_v1.0.0.hex -------------------------------------------------------------------------------- /examples/pitaya_cli/hex/pitaya_cli_v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/pitaya_cli/hex/pitaya_cli_v1.0.0.zip -------------------------------------------------------------------------------- /examples/pitaya_cli/hex/pitaya_cli_v1.0.0_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/pitaya_cli/hex/pitaya_cli_v1.0.0_s140.hex -------------------------------------------------------------------------------- /examples/pitaya_cli/hex/s140_nrf52_6.1.0_softdevice.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/pitaya_cli/hex/s140_nrf52_6.1.0_softdevice.zip -------------------------------------------------------------------------------- /examples/pitaya_cli/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/pitaya_cli/main.c -------------------------------------------------------------------------------- /examples/pitaya_cli/utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/pitaya_cli/utility.c -------------------------------------------------------------------------------- /examples/wifi/ap_scan_example/ap_scan_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/ap_scan_example/ap_scan_demo.c -------------------------------------------------------------------------------- /examples/wifi/ap_scan_example/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/ap_scan_example/armgcc/Makefile -------------------------------------------------------------------------------- /examples/wifi/ap_scan_example/armgcc/ap_scan_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/ap_scan_example/armgcc/ap_scan_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/wifi/ap_scan_example/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/ap_scan_example/config/sdk_config.h -------------------------------------------------------------------------------- /examples/wifi/ap_scan_example/hex/ap_scan_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/ap_scan_example/hex/ap_scan_pitaya_go.hex -------------------------------------------------------------------------------- /examples/wifi/ap_scan_example/hex/ap_scan_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/ap_scan_example/hex/ap_scan_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/wifi/chip_info_example/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/chip_info_example/armgcc/Makefile -------------------------------------------------------------------------------- /examples/wifi/chip_info_example/armgcc/chip_info_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/chip_info_example/armgcc/chip_info_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/wifi/chip_info_example/chip_info_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/chip_info_example/chip_info_demo.c -------------------------------------------------------------------------------- /examples/wifi/chip_info_example/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/chip_info_example/config/sdk_config.h -------------------------------------------------------------------------------- /examples/wifi/chip_info_example/hex/chip_info_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/chip_info_example/hex/chip_info_pitaya_go.hex -------------------------------------------------------------------------------- /examples/wifi/chip_info_example/hex/chip_info_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/chip_info_example/hex/chip_info_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/wifi/common/main_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/common/main_entry.c -------------------------------------------------------------------------------- /examples/wifi/mac_address_example/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mac_address_example/armgcc/Makefile -------------------------------------------------------------------------------- /examples/wifi/mac_address_example/armgcc/mac_address_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mac_address_example/armgcc/mac_address_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/wifi/mac_address_example/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mac_address_example/config/sdk_config.h -------------------------------------------------------------------------------- /examples/wifi/mac_address_example/hex/mac_address_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mac_address_example/hex/mac_address_pitaya_go.hex -------------------------------------------------------------------------------- /examples/wifi/mac_address_example/hex/mac_address_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mac_address_example/hex/mac_address_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/wifi/mac_address_example/mac_address_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mac_address_example/mac_address_demo.c -------------------------------------------------------------------------------- /examples/wifi/mode_ap_example/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mode_ap_example/armgcc/Makefile -------------------------------------------------------------------------------- /examples/wifi/mode_ap_example/armgcc/mode_ap_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mode_ap_example/armgcc/mode_ap_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/wifi/mode_ap_example/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mode_ap_example/config/sdk_config.h -------------------------------------------------------------------------------- /examples/wifi/mode_ap_example/hex/mode_ap_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mode_ap_example/hex/mode_ap_pitaya_go.hex -------------------------------------------------------------------------------- /examples/wifi/mode_ap_example/hex/mode_ap_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mode_ap_example/hex/mode_ap_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/wifi/mode_ap_example/mode_ap_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mode_ap_example/mode_ap_demo.c -------------------------------------------------------------------------------- /examples/wifi/mode_sta_example/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mode_sta_example/armgcc/Makefile -------------------------------------------------------------------------------- /examples/wifi/mode_sta_example/armgcc/mode_sta_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mode_sta_example/armgcc/mode_sta_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/wifi/mode_sta_example/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mode_sta_example/config/sdk_config.h -------------------------------------------------------------------------------- /examples/wifi/mode_sta_example/hex/mode_sta_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mode_sta_example/hex/mode_sta_pitaya_go.hex -------------------------------------------------------------------------------- /examples/wifi/mode_sta_example/hex/mode_sta_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mode_sta_example/hex/mode_sta_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/wifi/mode_sta_example/mode_sta_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mode_sta_example/mode_sta_demo.c -------------------------------------------------------------------------------- /examples/wifi/mqtt_client_example/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mqtt_client_example/armgcc/Makefile -------------------------------------------------------------------------------- /examples/wifi/mqtt_client_example/armgcc/mqtt_client_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mqtt_client_example/armgcc/mqtt_client_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/wifi/mqtt_client_example/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mqtt_client_example/config/sdk_config.h -------------------------------------------------------------------------------- /examples/wifi/mqtt_client_example/hex/mqtt_client_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mqtt_client_example/hex/mqtt_client_pitaya_go.hex -------------------------------------------------------------------------------- /examples/wifi/mqtt_client_example/hex/mqtt_client_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mqtt_client_example/hex/mqtt_client_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/wifi/mqtt_client_example/mqtt_client_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/mqtt_client_example/mqtt_client_demo.c -------------------------------------------------------------------------------- /examples/wifi/ping_example/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/ping_example/armgcc/Makefile -------------------------------------------------------------------------------- /examples/wifi/ping_example/armgcc/ping_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/ping_example/armgcc/ping_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/wifi/ping_example/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/ping_example/config/sdk_config.h -------------------------------------------------------------------------------- /examples/wifi/ping_example/hex/ping_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/ping_example/hex/ping_pitaya_go.hex -------------------------------------------------------------------------------- /examples/wifi/ping_example/hex/ping_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/ping_example/hex/ping_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/wifi/ping_example/ping_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/ping_example/ping_demo.c -------------------------------------------------------------------------------- /examples/wifi/power_save_mode_example/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/power_save_mode_example/armgcc/Makefile -------------------------------------------------------------------------------- /examples/wifi/power_save_mode_example/armgcc/power_save_mode_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/power_save_mode_example/armgcc/power_save_mode_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/wifi/power_save_mode_example/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/power_save_mode_example/config/sdk_config.h -------------------------------------------------------------------------------- /examples/wifi/power_save_mode_example/hex/power_save_mode_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/power_save_mode_example/hex/power_save_mode_pitaya_go.hex -------------------------------------------------------------------------------- /examples/wifi/power_save_mode_example/hex/power_save_mode_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/power_save_mode_example/hex/power_save_mode_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/wifi/power_save_mode_example/power_save_mode_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/power_save_mode_example/power_save_mode_demo.c -------------------------------------------------------------------------------- /examples/wifi/provision_http_example/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/provision_http_example/armgcc/Makefile -------------------------------------------------------------------------------- /examples/wifi/provision_http_example/armgcc/provision_http_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/provision_http_example/armgcc/provision_http_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/wifi/provision_http_example/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/provision_http_example/config/sdk_config.h -------------------------------------------------------------------------------- /examples/wifi/provision_http_example/hex/provision_http_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/provision_http_example/hex/provision_http_pitaya_go.hex -------------------------------------------------------------------------------- /examples/wifi/provision_http_example/hex/provision_http_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/provision_http_example/hex/provision_http_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/wifi/provision_http_example/provision_http_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/provision_http_example/provision_http_demo.c -------------------------------------------------------------------------------- /examples/wifi/signal_strength_example/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/signal_strength_example/armgcc/Makefile -------------------------------------------------------------------------------- /examples/wifi/signal_strength_example/armgcc/signal_strength_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/signal_strength_example/armgcc/signal_strength_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/wifi/signal_strength_example/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/signal_strength_example/config/sdk_config.h -------------------------------------------------------------------------------- /examples/wifi/signal_strength_example/hex/signal_strength_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/signal_strength_example/hex/signal_strength_pitaya_go.hex -------------------------------------------------------------------------------- /examples/wifi/signal_strength_example/hex/signal_strength_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/signal_strength_example/hex/signal_strength_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/wifi/signal_strength_example/signal_strength_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/signal_strength_example/signal_strength_demo.c -------------------------------------------------------------------------------- /examples/wifi/simple_tcp_client_example/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_tcp_client_example/armgcc/Makefile -------------------------------------------------------------------------------- /examples/wifi/simple_tcp_client_example/armgcc/simple_tcp_client_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_tcp_client_example/armgcc/simple_tcp_client_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/wifi/simple_tcp_client_example/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_tcp_client_example/config/sdk_config.h -------------------------------------------------------------------------------- /examples/wifi/simple_tcp_client_example/hex/simple_tcp_client_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_tcp_client_example/hex/simple_tcp_client_pitaya_go.hex -------------------------------------------------------------------------------- /examples/wifi/simple_tcp_client_example/hex/simple_tcp_client_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_tcp_client_example/hex/simple_tcp_client_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/wifi/simple_tcp_client_example/script/tcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_tcp_client_example/script/tcp_server.py -------------------------------------------------------------------------------- /examples/wifi/simple_tcp_client_example/simple_tcp_client_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_tcp_client_example/simple_tcp_client_demo.c -------------------------------------------------------------------------------- /examples/wifi/simple_tcp_server_example/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_tcp_server_example/armgcc/Makefile -------------------------------------------------------------------------------- /examples/wifi/simple_tcp_server_example/armgcc/simple_tcp_server_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_tcp_server_example/armgcc/simple_tcp_server_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/wifi/simple_tcp_server_example/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_tcp_server_example/config/sdk_config.h -------------------------------------------------------------------------------- /examples/wifi/simple_tcp_server_example/hex/simple_tcp_server_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_tcp_server_example/hex/simple_tcp_server_pitaya_go.hex -------------------------------------------------------------------------------- /examples/wifi/simple_tcp_server_example/hex/simple_tcp_server_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_tcp_server_example/hex/simple_tcp_server_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/wifi/simple_tcp_server_example/script/tcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_tcp_server_example/script/tcp_client.py -------------------------------------------------------------------------------- /examples/wifi/simple_tcp_server_example/simple_tcp_server_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_tcp_server_example/simple_tcp_server_demo.c -------------------------------------------------------------------------------- /examples/wifi/simple_udp_client_example/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_udp_client_example/armgcc/Makefile -------------------------------------------------------------------------------- /examples/wifi/simple_udp_client_example/armgcc/simple_udp_client_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_udp_client_example/armgcc/simple_udp_client_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/wifi/simple_udp_client_example/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_udp_client_example/config/sdk_config.h -------------------------------------------------------------------------------- /examples/wifi/simple_udp_client_example/hex/simple_udp_client_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_udp_client_example/hex/simple_udp_client_pitaya_go.hex -------------------------------------------------------------------------------- /examples/wifi/simple_udp_client_example/hex/simple_udp_client_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_udp_client_example/hex/simple_udp_client_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/wifi/simple_udp_client_example/script/udp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_udp_client_example/script/udp_server.py -------------------------------------------------------------------------------- /examples/wifi/simple_udp_client_example/simple_udp_client_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_udp_client_example/simple_udp_client_demo.c -------------------------------------------------------------------------------- /examples/wifi/simple_udp_server_example/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_udp_server_example/armgcc/Makefile -------------------------------------------------------------------------------- /examples/wifi/simple_udp_server_example/armgcc/simple_udp_server_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_udp_server_example/armgcc/simple_udp_server_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/wifi/simple_udp_server_example/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_udp_server_example/config/sdk_config.h -------------------------------------------------------------------------------- /examples/wifi/simple_udp_server_example/hex/simple_udp_server_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_udp_server_example/hex/simple_udp_server_pitaya_go.hex -------------------------------------------------------------------------------- /examples/wifi/simple_udp_server_example/hex/simple_udp_server_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_udp_server_example/hex/simple_udp_server_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/wifi/simple_udp_server_example/script/udp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_udp_server_example/script/udp_client.py -------------------------------------------------------------------------------- /examples/wifi/simple_udp_server_example/simple_udp_server_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/simple_udp_server_example/simple_udp_server_demo.c -------------------------------------------------------------------------------- /examples/wifi/ssl_connect_example/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/ssl_connect_example/armgcc/Makefile -------------------------------------------------------------------------------- /examples/wifi/ssl_connect_example/armgcc/ssl_connect_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/ssl_connect_example/armgcc/ssl_connect_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/wifi/ssl_connect_example/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/ssl_connect_example/config/sdk_config.h -------------------------------------------------------------------------------- /examples/wifi/ssl_connect_example/hex/ssl_connect_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/ssl_connect_example/hex/ssl_connect_pitaya_go.hex -------------------------------------------------------------------------------- /examples/wifi/ssl_connect_example/hex/ssl_connect_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/ssl_connect_example/hex/ssl_connect_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/wifi/ssl_connect_example/ssl_connect_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/ssl_connect_example/ssl_connect_demo.c -------------------------------------------------------------------------------- /examples/wifi/time_client_example/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/time_client_example/armgcc/Makefile -------------------------------------------------------------------------------- /examples/wifi/time_client_example/armgcc/time_client_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/time_client_example/armgcc/time_client_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/wifi/time_client_example/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/time_client_example/config/sdk_config.h -------------------------------------------------------------------------------- /examples/wifi/time_client_example/hex/time_client_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/time_client_example/hex/time_client_pitaya_go.hex -------------------------------------------------------------------------------- /examples/wifi/time_client_example/hex/time_client_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/time_client_example/hex/time_client_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/wifi/time_client_example/time_client_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/time_client_example/time_client_demo.c -------------------------------------------------------------------------------- /examples/wifi/weather_client_example/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/weather_client_example/armgcc/Makefile -------------------------------------------------------------------------------- /examples/wifi/weather_client_example/armgcc/weather_client_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/weather_client_example/armgcc/weather_client_gcc_nrf52.ld -------------------------------------------------------------------------------- /examples/wifi/weather_client_example/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/weather_client_example/config/sdk_config.h -------------------------------------------------------------------------------- /examples/wifi/weather_client_example/hex/weather_client_pitaya_go.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/weather_client_example/hex/weather_client_pitaya_go.hex -------------------------------------------------------------------------------- /examples/wifi/weather_client_example/hex/weather_client_pitaya_go_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/weather_client_example/hex/weather_client_pitaya_go_s140.hex -------------------------------------------------------------------------------- /examples/wifi/weather_client_example/weather_client_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/examples/wifi/weather_client_example/weather_client_demo.c -------------------------------------------------------------------------------- /external/pahomqtt/MQTTClient/MQTTClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTClient/MQTTClient.c -------------------------------------------------------------------------------- /external/pahomqtt/MQTTClient/MQTTClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTClient/MQTTClient.h -------------------------------------------------------------------------------- /external/pahomqtt/MQTTClient/Platforms/MCHP_ATWx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTClient/Platforms/MCHP_ATWx.c -------------------------------------------------------------------------------- /external/pahomqtt/MQTTClient/Platforms/MCHP_ATWx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTClient/Platforms/MCHP_ATWx.h -------------------------------------------------------------------------------- /external/pahomqtt/MQTTClient/Platforms/mqtt_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTClient/Platforms/mqtt_platform.h -------------------------------------------------------------------------------- /external/pahomqtt/MQTTClient/Wrapper/mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTClient/Wrapper/mqtt.c -------------------------------------------------------------------------------- /external/pahomqtt/MQTTClient/Wrapper/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTClient/Wrapper/mqtt.h -------------------------------------------------------------------------------- /external/pahomqtt/MQTTPacket/MQTTConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTPacket/MQTTConnect.h -------------------------------------------------------------------------------- /external/pahomqtt/MQTTPacket/MQTTConnectClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTPacket/MQTTConnectClient.c -------------------------------------------------------------------------------- /external/pahomqtt/MQTTPacket/MQTTConnectServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTPacket/MQTTConnectServer.c -------------------------------------------------------------------------------- /external/pahomqtt/MQTTPacket/MQTTDeserializePublish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTPacket/MQTTDeserializePublish.c -------------------------------------------------------------------------------- /external/pahomqtt/MQTTPacket/MQTTFormat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTPacket/MQTTFormat.c -------------------------------------------------------------------------------- /external/pahomqtt/MQTTPacket/MQTTFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTPacket/MQTTFormat.h -------------------------------------------------------------------------------- /external/pahomqtt/MQTTPacket/MQTTPacket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTPacket/MQTTPacket.c -------------------------------------------------------------------------------- /external/pahomqtt/MQTTPacket/MQTTPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTPacket/MQTTPacket.h -------------------------------------------------------------------------------- /external/pahomqtt/MQTTPacket/MQTTPublish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTPacket/MQTTPublish.h -------------------------------------------------------------------------------- /external/pahomqtt/MQTTPacket/MQTTSerializePublish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTPacket/MQTTSerializePublish.c -------------------------------------------------------------------------------- /external/pahomqtt/MQTTPacket/MQTTSubscribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTPacket/MQTTSubscribe.h -------------------------------------------------------------------------------- /external/pahomqtt/MQTTPacket/MQTTSubscribeClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTPacket/MQTTSubscribeClient.c -------------------------------------------------------------------------------- /external/pahomqtt/MQTTPacket/MQTTSubscribeServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTPacket/MQTTSubscribeServer.c -------------------------------------------------------------------------------- /external/pahomqtt/MQTTPacket/MQTTUnsubscribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTPacket/MQTTUnsubscribe.h -------------------------------------------------------------------------------- /external/pahomqtt/MQTTPacket/MQTTUnsubscribeClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTPacket/MQTTUnsubscribeClient.c -------------------------------------------------------------------------------- /external/pahomqtt/MQTTPacket/MQTTUnsubscribeServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTPacket/MQTTUnsubscribeServer.c -------------------------------------------------------------------------------- /external/pahomqtt/MQTTPacket/StackTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/MQTTPacket/StackTrace.h -------------------------------------------------------------------------------- /external/pahomqtt/doxygen/thirdparty.pahomqtt_0/doxyfile.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/doxygen/thirdparty.pahomqtt_0/doxyfile.doxygen -------------------------------------------------------------------------------- /external/pahomqtt/doxygen/thirdparty.pahomqtt_0/doxygen_module_mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/pahomqtt/doxygen/thirdparty.pahomqtt_0/doxygen_module_mainpage.h -------------------------------------------------------------------------------- /external/usb_driver/nordic_cdc_acm.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/usb_driver/nordic_cdc_acm.cat -------------------------------------------------------------------------------- /external/usb_driver/nordic_cdc_acm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/usb_driver/nordic_cdc_acm.inf -------------------------------------------------------------------------------- /external/winc1500/WINC1500_SW_API.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/WINC1500_SW_API.chm -------------------------------------------------------------------------------- /external/winc1500/bsp/include/nm_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/bsp/include/nm_bsp.h -------------------------------------------------------------------------------- /external/winc1500/bsp/include/nm_bsp_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/bsp/include/nm_bsp_internal.h -------------------------------------------------------------------------------- /external/winc1500/bsp/include/nm_bsp_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/bsp/include/nm_bsp_nrf52840.h -------------------------------------------------------------------------------- /external/winc1500/bsp/source/nm_bsp_nrf52840.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/bsp/source/nm_bsp_nrf52840.c -------------------------------------------------------------------------------- /external/winc1500/bus_wrapper/include/nm_bus_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/bus_wrapper/include/nm_bus_wrapper.h -------------------------------------------------------------------------------- /external/winc1500/bus_wrapper/source/nm_bus_wrapper_nrf52840.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/bus_wrapper/source/nm_bus_wrapper_nrf52840.c -------------------------------------------------------------------------------- /external/winc1500/common/include/nm_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/common/include/nm_common.h -------------------------------------------------------------------------------- /external/winc1500/common/include/nm_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/common/include/nm_debug.h -------------------------------------------------------------------------------- /external/winc1500/common/source/nm_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/common/source/nm_common.c -------------------------------------------------------------------------------- /external/winc1500/doxygen/common.components.wifi.winc1500_0/doxyfile.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/doxygen/common.components.wifi.winc1500_0/doxyfile.doxygen -------------------------------------------------------------------------------- /external/winc1500/doxygen/common.components.wifi.winc1500_0/doxygen_module_mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/doxygen/common.components.wifi.winc1500_0/doxygen_module_mainpage.h -------------------------------------------------------------------------------- /external/winc1500/doxygen/common.components.wifi.winc1500_1/doxyfile.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/doxygen/common.components.wifi.winc1500_1/doxyfile.doxygen -------------------------------------------------------------------------------- /external/winc1500/doxygen/common.components.wifi.winc1500_1/doxygen_module_mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/doxygen/common.components.wifi.winc1500_1/doxygen_module_mainpage.h -------------------------------------------------------------------------------- /external/winc1500/doxygen/common.components.wifi.winc1500_2/doxyfile.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/doxygen/common.components.wifi.winc1500_2/doxyfile.doxygen -------------------------------------------------------------------------------- /external/winc1500/doxygen/common.components.wifi.winc1500_2/doxygen_module_mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/doxygen/common.components.wifi.winc1500_2/doxygen_module_mainpage.h -------------------------------------------------------------------------------- /external/winc1500/doxygen/common.components.wifi.winc1500_3/doxyfile.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/doxygen/common.components.wifi.winc1500_3/doxyfile.doxygen -------------------------------------------------------------------------------- /external/winc1500/doxygen/common.components.wifi.winc1500_3/doxygen_module_mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/doxygen/common.components.wifi.winc1500_3/doxygen_module_mainpage.h -------------------------------------------------------------------------------- /external/winc1500/doxygen/common.components.wifi.winc1500_4/doxyfile.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/doxygen/common.components.wifi.winc1500_4/doxyfile.doxygen -------------------------------------------------------------------------------- /external/winc1500/doxygen/common.components.wifi.winc1500_4/doxygen_module_mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/doxygen/common.components.wifi.winc1500_4/doxygen_module_mainpage.h -------------------------------------------------------------------------------- /external/winc1500/doxygen/common.components.wifi.winc1500_5/doxyfile.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/doxygen/common.components.wifi.winc1500_5/doxyfile.doxygen -------------------------------------------------------------------------------- /external/winc1500/doxygen/common.components.wifi.winc1500_5/doxygen_module_mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/doxygen/common.components.wifi.winc1500_5/doxygen_module_mainpage.h -------------------------------------------------------------------------------- /external/winc1500/doxygen/common.components.wifi.winc1500_6/doxyfile.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/doxygen/common.components.wifi.winc1500_6/doxyfile.doxygen -------------------------------------------------------------------------------- /external/winc1500/doxygen/common.components.wifi.winc1500_6/doxygen_module_mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/doxygen/common.components.wifi.winc1500_6/doxygen_module_mainpage.h -------------------------------------------------------------------------------- /external/winc1500/doxygen/common.components.wifi.winc1500_7/doxyfile.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/doxygen/common.components.wifi.winc1500_7/doxyfile.doxygen -------------------------------------------------------------------------------- /external/winc1500/doxygen/common.components.wifi.winc1500_7/doxygen_module_mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/doxygen/common.components.wifi.winc1500_7/doxygen_module_mainpage.h -------------------------------------------------------------------------------- /external/winc1500/driver/include/ecc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/include/ecc_types.h -------------------------------------------------------------------------------- /external/winc1500/driver/include/m2m_ate_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/include/m2m_ate_mode.h -------------------------------------------------------------------------------- /external/winc1500/driver/include/m2m_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/include/m2m_crypto.h -------------------------------------------------------------------------------- /external/winc1500/driver/include/m2m_ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/include/m2m_ota.h -------------------------------------------------------------------------------- /external/winc1500/driver/include/m2m_periph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/include/m2m_periph.h -------------------------------------------------------------------------------- /external/winc1500/driver/include/m2m_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/include/m2m_ssl.h -------------------------------------------------------------------------------- /external/winc1500/driver/include/m2m_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/include/m2m_types.h -------------------------------------------------------------------------------- /external/winc1500/driver/include/m2m_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/include/m2m_wifi.h -------------------------------------------------------------------------------- /external/winc1500/driver/source/m2m_ate_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/m2m_ate_mode.c -------------------------------------------------------------------------------- /external/winc1500/driver/source/m2m_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/m2m_crypto.c -------------------------------------------------------------------------------- /external/winc1500/driver/source/m2m_hif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/m2m_hif.c -------------------------------------------------------------------------------- /external/winc1500/driver/source/m2m_hif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/m2m_hif.h -------------------------------------------------------------------------------- /external/winc1500/driver/source/m2m_ota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/m2m_ota.c -------------------------------------------------------------------------------- /external/winc1500/driver/source/m2m_periph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/m2m_periph.c -------------------------------------------------------------------------------- /external/winc1500/driver/source/m2m_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/m2m_ssl.c -------------------------------------------------------------------------------- /external/winc1500/driver/source/m2m_wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/m2m_wifi.c -------------------------------------------------------------------------------- /external/winc1500/driver/source/nmasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/nmasic.c -------------------------------------------------------------------------------- /external/winc1500/driver/source/nmasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/nmasic.h -------------------------------------------------------------------------------- /external/winc1500/driver/source/nmbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/nmbus.c -------------------------------------------------------------------------------- /external/winc1500/driver/source/nmbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/nmbus.h -------------------------------------------------------------------------------- /external/winc1500/driver/source/nmdrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/nmdrv.c -------------------------------------------------------------------------------- /external/winc1500/driver/source/nmdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/nmdrv.h -------------------------------------------------------------------------------- /external/winc1500/driver/source/nmi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/nmi2c.c -------------------------------------------------------------------------------- /external/winc1500/driver/source/nmi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/nmi2c.h -------------------------------------------------------------------------------- /external/winc1500/driver/source/nmspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/nmspi.c -------------------------------------------------------------------------------- /external/winc1500/driver/source/nmspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/nmspi.h -------------------------------------------------------------------------------- /external/winc1500/driver/source/nmuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/nmuart.c -------------------------------------------------------------------------------- /external/winc1500/driver/source/nmuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/driver/source/nmuart.h -------------------------------------------------------------------------------- /external/winc1500/module_config/nrf52840/conf_winc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/module_config/nrf52840/conf_winc.h -------------------------------------------------------------------------------- /external/winc1500/programmer/programmer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/programmer/programmer.h -------------------------------------------------------------------------------- /external/winc1500/programmer/programmer_apis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/programmer/programmer_apis.h -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/crypto/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/crypto/crypto.h -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/crypto/crypto_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/crypto/crypto_api.c -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/crypto/crypto_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/crypto/crypto_api.h -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/crypto/crypto_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/crypto/crypto_types.h -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/crypto/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/crypto/hash.c -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/crypto/rsa_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/crypto/rsa_key.c -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/crypto/tls_buffer_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/crypto/tls_buffer_manager.c -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/crypto/tls_buffer_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/crypto/tls_buffer_manager.h -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/pem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/pem.c -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/pem.h -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/root_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/root_setup.c -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/root_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/root_setup.h -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/root_tls_cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/root_tls_cert.h -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/tls_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/tls_setup.c -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/tls_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/tls_setup.h -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/tls_srv_sec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/tls_srv_sec.c -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/tls_srv_sec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/tls_srv_sec.h -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/x509/asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/x509/asn1.c -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/x509/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/x509/asn1.h -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/x509/x509_cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/x509/x509_cert.c -------------------------------------------------------------------------------- /external/winc1500/root_tls_cert/x509/x509_cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/root_tls_cert/x509/x509_cert.h -------------------------------------------------------------------------------- /external/winc1500/socket/include/m2m_socket_host_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/socket/include/m2m_socket_host_if.h -------------------------------------------------------------------------------- /external/winc1500/socket/include/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/socket/include/socket.h -------------------------------------------------------------------------------- /external/winc1500/socket/source/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/socket/source/socket.c -------------------------------------------------------------------------------- /external/winc1500/socket/source/socket_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/socket/source/socket_internal.h -------------------------------------------------------------------------------- /external/winc1500/spi_flash/include/flexible_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/spi_flash/include/flexible_flash.h -------------------------------------------------------------------------------- /external/winc1500/spi_flash/include/spi_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/spi_flash/include/spi_flash.h -------------------------------------------------------------------------------- /external/winc1500/spi_flash/include/spi_flash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/spi_flash/include/spi_flash_map.h -------------------------------------------------------------------------------- /external/winc1500/spi_flash/source/flexible_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/spi_flash/source/flexible_flash.c -------------------------------------------------------------------------------- /external/winc1500/spi_flash/source/spi_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/external/winc1500/spi_flash/source/spi_flash.c -------------------------------------------------------------------------------- /firmware/open_bootloader/open_bootloader_pitaya_go_v1.0.0.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/open_bootloader/open_bootloader_pitaya_go_v1.0.0.hex -------------------------------------------------------------------------------- /firmware/open_bootloader/open_bootloader_pitaya_go_v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/open_bootloader/open_bootloader_pitaya_go_v1.0.0.zip -------------------------------------------------------------------------------- /firmware/openthread/cli/thread_cli_ftd_usb_pitaya_go_v1.3.1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/openthread/cli/thread_cli_ftd_usb_pitaya_go_v1.3.1.hex -------------------------------------------------------------------------------- /firmware/openthread/cli/thread_cli_ftd_usb_pitaya_go_v1.3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/openthread/cli/thread_cli_ftd_usb_pitaya_go_v1.3.1.zip -------------------------------------------------------------------------------- /firmware/openthread/cli/thread_cli_ftd_usb_pitaya_go_v1.3.1_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/openthread/cli/thread_cli_ftd_usb_pitaya_go_v1.3.1_mbr.hex -------------------------------------------------------------------------------- /firmware/openthread/cli/thread_cli_mtd_usb_pitaya_go_v1.3.1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/openthread/cli/thread_cli_mtd_usb_pitaya_go_v1.3.1.hex -------------------------------------------------------------------------------- /firmware/openthread/cli/thread_cli_mtd_usb_pitaya_go_v1.3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/openthread/cli/thread_cli_mtd_usb_pitaya_go_v1.3.1.zip -------------------------------------------------------------------------------- /firmware/openthread/cli/thread_cli_mtd_usb_pitaya_go_v1.3.1_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/openthread/cli/thread_cli_mtd_usb_pitaya_go_v1.3.1_mbr.hex -------------------------------------------------------------------------------- /firmware/openthread/ncp/thread_ncp_ftd_usb_pitaya_go_v1.3.1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/openthread/ncp/thread_ncp_ftd_usb_pitaya_go_v1.3.1.hex -------------------------------------------------------------------------------- /firmware/openthread/ncp/thread_ncp_ftd_usb_pitaya_go_v1.3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/openthread/ncp/thread_ncp_ftd_usb_pitaya_go_v1.3.1.zip -------------------------------------------------------------------------------- /firmware/openthread/ncp/thread_ncp_ftd_usb_pitaya_go_v1.3.1_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/openthread/ncp/thread_ncp_ftd_usb_pitaya_go_v1.3.1_mbr.hex -------------------------------------------------------------------------------- /firmware/openthread/ncp/thread_ncp_radio_usb_pitaya_go_v1.3.1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/openthread/ncp/thread_ncp_radio_usb_pitaya_go_v1.3.1.hex -------------------------------------------------------------------------------- /firmware/openthread/ncp/thread_ncp_radio_usb_pitaya_go_v1.3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/openthread/ncp/thread_ncp_radio_usb_pitaya_go_v1.3.1.zip -------------------------------------------------------------------------------- /firmware/openthread/ncp/thread_ncp_radio_usb_pitaya_go_v1.3.1_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/openthread/ncp/thread_ncp_radio_usb_pitaya_go_v1.3.1_mbr.hex -------------------------------------------------------------------------------- /firmware/pitaya_cli/pitaya_cli_v1.0.0.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/pitaya_cli/pitaya_cli_v1.0.0.hex -------------------------------------------------------------------------------- /firmware/pitaya_cli/pitaya_cli_v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/pitaya_cli/pitaya_cli_v1.0.0.zip -------------------------------------------------------------------------------- /firmware/pitaya_cli/pitaya_cli_v1.0.0_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/pitaya_cli/pitaya_cli_v1.0.0_s140.hex -------------------------------------------------------------------------------- /firmware/pitaya_cli/s140_nrf52_6.1.0_softdevice.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/pitaya_cli/s140_nrf52_6.1.0_softdevice.zip -------------------------------------------------------------------------------- /firmware/rssi_viewer/rssi_viewer_pitaya_go_v1.0.0.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/rssi_viewer/rssi_viewer_pitaya_go_v1.0.0.hex -------------------------------------------------------------------------------- /firmware/rssi_viewer/rssi_viewer_pitaya_go_v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/rssi_viewer/rssi_viewer_pitaya_go_v1.0.0.zip -------------------------------------------------------------------------------- /firmware/rssi_viewer/rssi_viewer_pitaya_go_v1.0.0_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/rssi_viewer/rssi_viewer_pitaya_go_v1.0.0_mbr.hex -------------------------------------------------------------------------------- /firmware/wifi/serial_bridge_usb_pitaya_go_v1.0.0.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/wifi/serial_bridge_usb_pitaya_go_v1.0.0.hex -------------------------------------------------------------------------------- /firmware/wifi/serial_bridge_usb_pitaya_go_v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/wifi/serial_bridge_usb_pitaya_go_v1.0.0.zip -------------------------------------------------------------------------------- /firmware/wifi/serial_bridge_usb_pitaya_go_v1.0.0_mbr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/firmware/wifi/serial_bridge_usb_pitaya_go_v1.0.0_mbr.hex -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /nrf_sdks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/nrf_sdks/.gitignore -------------------------------------------------------------------------------- /nrf_sdks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/nrf_sdks/README.md -------------------------------------------------------------------------------- /utils/wifi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/.gitignore -------------------------------------------------------------------------------- /utils/wifi/FW_VERSION: -------------------------------------------------------------------------------- 1 | 19.6.1 -------------------------------------------------------------------------------- /utils/wifi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/README.md -------------------------------------------------------------------------------- /utils/wifi/Tools/gain_builder/debug_i2c/aardvark.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/gain_builder/debug_i2c/aardvark.dll -------------------------------------------------------------------------------- /utils/wifi/Tools/gain_builder/debug_i2c/gain_builder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/gain_builder/debug_i2c/gain_builder.exe -------------------------------------------------------------------------------- /utils/wifi/Tools/gain_builder/debug_uart/gain_build_and_download.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/gain_builder/debug_uart/gain_build_and_download.bat -------------------------------------------------------------------------------- /utils/wifi/Tools/gain_builder/debug_uart/gain_builder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/gain_builder/debug_uart/gain_builder.exe -------------------------------------------------------------------------------- /utils/wifi/Tools/gain_builder/gain_sheets/atwinc1500_gain_setting_default.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/gain_builder/gain_sheets/atwinc1500_gain_setting_default.csv -------------------------------------------------------------------------------- /utils/wifi/Tools/image_builder/debug/generate_ate_image.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/image_builder/debug/generate_ate_image.bat -------------------------------------------------------------------------------- /utils/wifi/Tools/image_builder/debug/generate_normal_image.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/image_builder/debug/generate_normal_image.bat -------------------------------------------------------------------------------- /utils/wifi/Tools/image_builder/debug/image_builder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/image_builder/debug/image_builder.exe -------------------------------------------------------------------------------- /utils/wifi/Tools/image_cloner/debug_i2c/aardvark.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/image_cloner/debug_i2c/aardvark.dll -------------------------------------------------------------------------------- /utils/wifi/Tools/image_cloner/debug_i2c/image_cloner.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/image_cloner/debug_i2c/image_cloner.exe -------------------------------------------------------------------------------- /utils/wifi/Tools/image_cloner/debug_uart/image_cloner.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/image_cloner/debug_uart/image_cloner.exe -------------------------------------------------------------------------------- /utils/wifi/Tools/image_downloader/debug_i2c/aardvark.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/image_downloader/debug_i2c/aardvark.dll -------------------------------------------------------------------------------- /utils/wifi/Tools/image_downloader/debug_i2c/image_downloader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/image_downloader/debug_i2c/image_downloader.exe -------------------------------------------------------------------------------- /utils/wifi/Tools/image_downloader/debug_i2c/run_image_downloader.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/image_downloader/debug_i2c/run_image_downloader.bat -------------------------------------------------------------------------------- /utils/wifi/Tools/image_downloader/debug_uart/image_downloader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/image_downloader/debug_uart/image_downloader.exe -------------------------------------------------------------------------------- /utils/wifi/Tools/image_downloader/debug_uart/run_image_downloader.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/image_downloader/debug_uart/run_image_downloader.bat -------------------------------------------------------------------------------- /utils/wifi/Tools/root_certificate_downloader/binary/BaltimoreCyberTrustRoot.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/root_certificate_downloader/binary/BaltimoreCyberTrustRoot.cer -------------------------------------------------------------------------------- /utils/wifi/Tools/root_certificate_downloader/binary/DigiCert.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/root_certificate_downloader/binary/DigiCert.cer -------------------------------------------------------------------------------- /utils/wifi/Tools/root_certificate_downloader/binary/DigiCertSHA2.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/root_certificate_downloader/binary/DigiCertSHA2.cer -------------------------------------------------------------------------------- /utils/wifi/Tools/root_certificate_downloader/binary/EnTrust.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/root_certificate_downloader/binary/EnTrust.cer -------------------------------------------------------------------------------- /utils/wifi/Tools/root_certificate_downloader/binary/GTSGIAG3.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/root_certificate_downloader/binary/GTSGIAG3.cer -------------------------------------------------------------------------------- /utils/wifi/Tools/root_certificate_downloader/binary/GeoTrust.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/root_certificate_downloader/binary/GeoTrust.cer -------------------------------------------------------------------------------- /utils/wifi/Tools/root_certificate_downloader/binary/GlobalSignRoot.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/root_certificate_downloader/binary/GlobalSignRoot.cer -------------------------------------------------------------------------------- /utils/wifi/Tools/root_certificate_downloader/binary/GlobalSignRoot2.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/root_certificate_downloader/binary/GlobalSignRoot2.cer -------------------------------------------------------------------------------- /utils/wifi/Tools/root_certificate_downloader/binary/NMA_Root.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/root_certificate_downloader/binary/NMA_Root.cer -------------------------------------------------------------------------------- /utils/wifi/Tools/root_certificate_downloader/binary/PROWL_Root.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/root_certificate_downloader/binary/PROWL_Root.cer -------------------------------------------------------------------------------- /utils/wifi/Tools/root_certificate_downloader/binary/PitayaRoot.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/root_certificate_downloader/binary/PitayaRoot.cer -------------------------------------------------------------------------------- /utils/wifi/Tools/root_certificate_downloader/binary/QuoVadis_Root.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/root_certificate_downloader/binary/QuoVadis_Root.cer -------------------------------------------------------------------------------- /utils/wifi/Tools/root_certificate_downloader/binary/VeriSign.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/root_certificate_downloader/binary/VeriSign.cer -------------------------------------------------------------------------------- /utils/wifi/Tools/root_certificate_downloader/debug_i2c/RootCertDownload.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/root_certificate_downloader/debug_i2c/RootCertDownload.bat -------------------------------------------------------------------------------- /utils/wifi/Tools/root_certificate_downloader/debug_i2c/aardvark.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/root_certificate_downloader/debug_i2c/aardvark.dll -------------------------------------------------------------------------------- /utils/wifi/Tools/root_certificate_downloader/debug_i2c/root_certificate_downloader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/root_certificate_downloader/debug_i2c/root_certificate_downloader.exe -------------------------------------------------------------------------------- /utils/wifi/Tools/root_certificate_downloader/debug_uart/RootCertDownload.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/root_certificate_downloader/debug_uart/RootCertDownload.bat -------------------------------------------------------------------------------- /utils/wifi/Tools/root_certificate_downloader/debug_uart/root_certificate_downloader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/root_certificate_downloader/debug_uart/root_certificate_downloader.exe -------------------------------------------------------------------------------- /utils/wifi/Tools/tls_cert_flash_tool/Debug_I2C/aardvark.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/tls_cert_flash_tool/Debug_I2C/aardvark.dll -------------------------------------------------------------------------------- /utils/wifi/Tools/tls_cert_flash_tool/Debug_I2C/tls_cert_flash_tool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/tls_cert_flash_tool/Debug_I2C/tls_cert_flash_tool.exe -------------------------------------------------------------------------------- /utils/wifi/Tools/tls_cert_flash_tool/Debug_UART/tls_cert_flash_tool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/Tools/tls_cert_flash_tool/Debug_UART/tls_cert_flash_tool.exe -------------------------------------------------------------------------------- /utils/wifi/ate_firmware/burst_tx_firmware_winc1500.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/ate_firmware/burst_tx_firmware_winc1500.bin -------------------------------------------------------------------------------- /utils/wifi/boot_firmware/release3A0/boot_firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/boot_firmware/release3A0/boot_firmware.bin -------------------------------------------------------------------------------- /utils/wifi/download_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/download_all.bat -------------------------------------------------------------------------------- /utils/wifi/downloader_firmware/release3A0/downloader_firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/downloader_firmware/release3A0/downloader_firmware.bin -------------------------------------------------------------------------------- /utils/wifi/firmware/m2m_aio_3a0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/firmware/m2m_aio_3a0.bin -------------------------------------------------------------------------------- /utils/wifi/firmware/wifi_v111/ASIC_3A0/wifi_firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/firmware/wifi_v111/ASIC_3A0/wifi_firmware.bin -------------------------------------------------------------------------------- /utils/wifi/modify_provisioning_webpage.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/modify_provisioning_webpage.bat -------------------------------------------------------------------------------- /utils/wifi/ota_firmware/m2m_ota_3a0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/ota_firmware/m2m_ota_3a0.bin -------------------------------------------------------------------------------- /utils/wifi/programmer_firmware/release3A0/programmer_firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/programmer_firmware/release3A0/programmer_firmware.bin -------------------------------------------------------------------------------- /utils/wifi/programmer_firmware/release3A0/programmer_release_text.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/programmer_firmware/release3A0/programmer_release_text.bin -------------------------------------------------------------------------------- /utils/wifi/provisioning_webpage/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/provisioning_webpage/default.html -------------------------------------------------------------------------------- /utils/wifi/provisioning_webpage/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/pitaya-go/HEAD/utils/wifi/provisioning_webpage/style.css --------------------------------------------------------------------------------