├── .github └── workflows │ ├── close-resolved-issues.yml │ ├── need-attention-issues.yml │ └── stale-issues.yml ├── .gitignore ├── AZ3166 ├── jenkins │ ├── DevKitTestTool │ │ ├── App.config │ │ ├── Constants.cs │ │ ├── DevKitTestTool.csproj │ │ ├── DevKitTestTool.sln │ │ ├── InstallationPackageTest.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SerialPortListener.cs │ │ └── excludedTests.txt │ ├── InstallationPackageScript │ │ ├── .babelrc │ │ ├── gulpfile.js │ │ ├── package.json │ │ └── src │ │ │ ├── generate.js │ │ │ ├── index.js │ │ │ └── util.js │ ├── JobConfig │ │ ├── CppCheck.xml │ │ ├── CreatActiveProgramFireware.xml │ │ ├── DevKitProdDeploy.xml │ │ ├── DevKitStagingDeploy.xml │ │ ├── DevkitBuild.xml │ │ └── SpellCheck.xml │ └── deployment │ │ ├── DevKitDeploy-forPnP.ps1 │ │ ├── DevKitDeploy.ps1 │ │ ├── DevKitTestToolDeploy.ps1 │ │ └── GenerateBinFile.py ├── src │ ├── README.md │ ├── boards.txt │ ├── bootloader │ │ └── boot.bin │ ├── cores │ │ └── arduino │ │ │ ├── Arduino.cpp │ │ │ ├── Arduino.h │ │ │ ├── AttachInterrupt.cpp │ │ │ ├── AttachInterrupt.h │ │ │ ├── BufferedSerial.cpp │ │ │ ├── BufferedSerial.h │ │ │ ├── EEPROMInterface.cpp │ │ │ ├── EEPROMInterface.h │ │ │ ├── HardwareSerial.h │ │ │ ├── IPAddress.cpp │ │ │ ├── IPAddress.h │ │ │ ├── NTPClient │ │ │ ├── NTPClient.cpp │ │ │ └── NTPClient.h │ │ │ ├── OledDisplay.cpp │ │ │ ├── OledDisplay.h │ │ │ ├── Print.cpp │ │ │ ├── Print.h │ │ │ ├── Printable.h │ │ │ ├── RingBuffer.cpp │ │ │ ├── RingBuffer.h │ │ │ ├── Stream.cpp │ │ │ ├── Stream.h │ │ │ ├── TLSSocket.cpp │ │ │ ├── TLSSocket.h │ │ │ ├── Telemetry │ │ │ ├── Telemetry.cpp │ │ │ ├── Telemetry.h │ │ │ ├── TelemetryClient.cpp │ │ │ └── TelemetryClient.h │ │ │ ├── UARTClass.cpp │ │ │ ├── UARTClass.h │ │ │ ├── WCharacter.cpp │ │ │ ├── WCharacter.h │ │ │ ├── WMath.cpp │ │ │ ├── WMath.h │ │ │ ├── WString.cpp │ │ │ ├── WString.h │ │ │ ├── Watchdog.cpp │ │ │ ├── Watchdog.h │ │ │ ├── cli │ │ │ ├── console_cli.cpp │ │ │ └── console_cli.h │ │ │ ├── floatIO.c │ │ │ ├── floatIO.h │ │ │ ├── httpclient │ │ │ ├── http_c_response.cpp │ │ │ ├── http_c_response.h │ │ │ ├── http_client.cpp │ │ │ ├── http_client.h │ │ │ ├── http_common.h │ │ │ ├── http_header_builder.cpp │ │ │ ├── http_header_builder.h │ │ │ ├── http_parsed_url.cpp │ │ │ ├── http_parsed_url.h │ │ │ ├── http_parser │ │ │ │ ├── LICENSE │ │ │ │ ├── http_parser.c │ │ │ │ └── http_parser.h │ │ │ ├── http_response_parser.cpp │ │ │ ├── http_response_parser.h │ │ │ ├── https_request.cpp │ │ │ └── https_request.h │ │ │ ├── httpserver │ │ │ ├── app_httpd.cpp │ │ │ ├── app_httpd.h │ │ │ ├── helper.c │ │ │ ├── helper.h │ │ │ ├── http-strings.c │ │ │ ├── http-strings.h │ │ │ ├── http_parse.c │ │ │ ├── http_parse.h │ │ │ ├── httpd.c │ │ │ ├── httpd.h │ │ │ ├── httpd_handle.c │ │ │ ├── httpd_handle.h │ │ │ ├── httpd_sys.c │ │ │ ├── httpd_sys.h │ │ │ ├── httpd_utility.h │ │ │ ├── httpd_wsgi.c │ │ │ └── httpd_wsgi.h │ │ │ ├── pgmspace.cpp │ │ │ ├── pgmspace.h │ │ │ ├── system │ │ │ ├── OTAFirmwareUpdate.cpp │ │ │ ├── OTAFirmwareUpdate.h │ │ │ ├── SerialLog.cpp │ │ │ ├── SerialLog.h │ │ │ ├── SystemDns.cpp │ │ │ ├── SystemDns.h │ │ │ ├── SystemFunc.cpp │ │ │ ├── SystemFunc.h │ │ │ ├── SystemTickCounter.cpp │ │ │ ├── SystemTickCounter.h │ │ │ ├── SystemTime.cpp │ │ │ ├── SystemTime.h │ │ │ ├── SystemVariables.cpp │ │ │ ├── SystemVariables.h │ │ │ ├── SystemVersion.cpp │ │ │ ├── SystemVersion.h │ │ │ ├── SystemWeb.cpp │ │ │ ├── SystemWeb.h │ │ │ ├── SystemWiFi.cpp │ │ │ ├── SystemWiFi.h │ │ │ ├── _main_arduino.cpp │ │ │ └── _main_sys.cpp │ │ │ ├── wiring.cpp │ │ │ ├── wiring.h │ │ │ ├── wiring_analog.cpp │ │ │ ├── wiring_analog.h │ │ │ ├── wiring_constants.h │ │ │ ├── wiring_digital.cpp │ │ │ └── wiring_digital.h │ ├── libraries │ │ ├── Audio │ │ │ ├── examples │ │ │ │ └── VoiceRecord │ │ │ │ │ ├── .bin │ │ │ │ │ └── config.json │ │ │ │ │ ├── .vscode │ │ │ │ │ ├── arduino.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── tasks.json │ │ │ │ │ ├── VoiceRecord.ino │ │ │ │ │ └── readme.md │ │ │ ├── library.properties │ │ │ └── src │ │ │ │ ├── AudioClass.cpp │ │ │ │ ├── AudioClass.h │ │ │ │ ├── audio_common.h │ │ │ │ ├── nau88c10.c │ │ │ │ ├── nau88c10.h │ │ │ │ ├── stm32412g_discovery.c │ │ │ │ ├── stm32412g_discovery.h │ │ │ │ ├── stm32412g_discovery_audio.c │ │ │ │ ├── stm32412g_discovery_audio.h │ │ │ │ ├── stm32f4xx_hal_msp.c │ │ │ │ ├── stm32f4xx_it.c │ │ │ │ └── stm32f4xx_it.h │ │ ├── AudioV2 │ │ │ ├── examples │ │ │ │ ├── RecordVoiceToWAV │ │ │ │ │ ├── .bin │ │ │ │ │ │ └── config.json │ │ │ │ │ ├── .vscode │ │ │ │ │ │ ├── arduino.json │ │ │ │ │ │ ├── settings.json │ │ │ │ │ │ └── tasks.json │ │ │ │ │ ├── RecordVoiceToWAV.ino │ │ │ │ │ └── readme.md │ │ │ │ └── VoiceRecord │ │ │ │ │ ├── .bin │ │ │ │ │ └── config.json │ │ │ │ │ ├── .vscode │ │ │ │ │ ├── arduino.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── tasks.json │ │ │ │ │ ├── VoiceRecord.ino │ │ │ │ │ └── readme.md │ │ │ ├── library.properties │ │ │ └── src │ │ │ │ ├── AudioClassV2.cpp │ │ │ │ ├── AudioClassV2.h │ │ │ │ ├── audio_common.h │ │ │ │ ├── nau88c10.c │ │ │ │ ├── nau88c10.h │ │ │ │ ├── stm32412g_discovery.c │ │ │ │ ├── stm32412g_discovery.h │ │ │ │ ├── stm32412g_discovery_audio.c │ │ │ │ ├── stm32412g_discovery_audio.h │ │ │ │ ├── stm32f4xx_hal_msp.c │ │ │ │ ├── stm32f4xx_it.c │ │ │ │ └── stm32f4xx_it.h │ │ ├── AzureIoT │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ └── examples.md │ │ │ ├── keywords.txt │ │ │ ├── library.properties │ │ │ └── src │ │ │ │ ├── AzureIotHub.cpp │ │ │ │ ├── AzureIotHub.h │ │ │ │ ├── DevKitMQTTClient.cpp │ │ │ │ ├── DevKitMQTTClient.h │ │ │ │ ├── DevKitOTAUtils.cpp │ │ │ │ ├── DevKitOTAUtils.h │ │ │ │ ├── DevkitDPSClient.cpp │ │ │ │ └── DevkitDPSClient.h │ │ ├── FileSystem │ │ │ ├── examples │ │ │ │ └── FileSystem │ │ │ │ │ ├── .bin │ │ │ │ │ └── config.json │ │ │ │ │ ├── .vscode │ │ │ │ │ ├── arduino.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── tasks.json │ │ │ │ │ ├── FileSystem.ino │ │ │ │ │ └── readme.md │ │ │ ├── library.properties │ │ │ └── src │ │ │ │ ├── SFlashBlockDevice.cpp │ │ │ │ ├── SFlashBlockDevice.h │ │ │ │ ├── fatfs_exfuns.c │ │ │ │ └── fatfs_exfuns.h │ │ ├── MQTT │ │ │ ├── examples │ │ │ │ └── MQTTClient │ │ │ │ │ ├── .bin │ │ │ │ │ └── config.json │ │ │ │ │ ├── .vscode │ │ │ │ │ ├── arduino.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── tasks.json │ │ │ │ │ ├── MQTTClient.ino │ │ │ │ │ └── readme.md │ │ │ ├── library.properties │ │ │ └── src │ │ │ │ ├── FP │ │ │ │ └── FP.h │ │ │ │ ├── MQTTAsync.h │ │ │ │ ├── MQTTClient.h │ │ │ │ ├── MQTTNetwork.h │ │ │ │ ├── MQTTPacket │ │ │ │ ├── MQTTConnect.h │ │ │ │ ├── MQTTConnectClient.c │ │ │ │ ├── MQTTConnectServer.c │ │ │ │ ├── MQTTDeserializePublish.c │ │ │ │ ├── MQTTPacket.c │ │ │ │ ├── MQTTPacket.h │ │ │ │ ├── MQTTPublish.h │ │ │ │ ├── MQTTSerializePublish.c │ │ │ │ ├── MQTTSubscribe.h │ │ │ │ ├── MQTTSubscribeClient.c │ │ │ │ ├── MQTTSubscribeServer.c │ │ │ │ ├── MQTTUnsubscribe.h │ │ │ │ ├── MQTTUnsubscribeClient.c │ │ │ │ ├── MQTTUnsubscribeServer.c │ │ │ │ └── StackTrace.h │ │ │ │ └── MQTTmbed.h │ │ ├── SPI │ │ │ ├── keywords.txt │ │ │ ├── library.properties │ │ │ └── src │ │ │ │ ├── AZ3166SPI.cpp │ │ │ │ └── AZ3166SPI.h │ │ ├── Sensors │ │ │ ├── examples │ │ │ │ └── SensorStatus │ │ │ │ │ ├── .bin │ │ │ │ │ └── config.json │ │ │ │ │ ├── .vscode │ │ │ │ │ ├── arduino.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── tasks.json │ │ │ │ │ ├── SensorStatus.ino │ │ │ │ │ └── readme.md │ │ │ ├── library.properties │ │ │ └── src │ │ │ │ ├── HTS221Sensor.cpp │ │ │ │ ├── HTS221Sensor.h │ │ │ │ ├── IoT_DevKit_HW.cpp │ │ │ │ ├── IoT_DevKit_HW.h │ │ │ │ ├── IrDASensor.cpp │ │ │ │ ├── IrDASensor.h │ │ │ │ ├── LIS2MDLSensor.cpp │ │ │ │ ├── LIS2MDLSensor.h │ │ │ │ ├── LPS22HBSensor.cpp │ │ │ │ ├── LPS22HBSensor.h │ │ │ │ ├── LSM6DSLSensor.cpp │ │ │ │ ├── LSM6DSLSensor.h │ │ │ │ ├── RGB_LED.cpp │ │ │ │ ├── RGB_LED.h │ │ │ │ ├── ST_INTERFACES │ │ │ │ ├── BDCMotor.h │ │ │ │ ├── Component.h │ │ │ │ ├── DevI2C.h │ │ │ │ ├── GyroSensor.h │ │ │ │ ├── HumiditySensor.h │ │ │ │ ├── LightSensor.h │ │ │ │ ├── MagneticSensor.h │ │ │ │ ├── MotionSensor.h │ │ │ │ ├── Nfc.h │ │ │ │ ├── PressureSensor.h │ │ │ │ ├── RangeSensor.h │ │ │ │ ├── StepperMotor.h │ │ │ │ ├── TempSensor.h │ │ │ │ ├── hum_temp.h │ │ │ │ ├── imu_6axes.h │ │ │ │ └── magneto.h │ │ │ │ ├── Sensor.h │ │ │ │ └── utility │ │ │ │ ├── HTS221_driver.c │ │ │ │ ├── HTS221_driver.h │ │ │ │ ├── LPS22HB_driver.c │ │ │ │ ├── LPS22HB_driver.h │ │ │ │ ├── LSM6DSL_acc_gyro_driver.c │ │ │ │ ├── LSM6DSL_acc_gyro_driver.h │ │ │ │ └── lis2mdl_driver.h │ │ ├── WebSocket │ │ │ ├── examples │ │ │ │ └── WebSocketEcho │ │ │ │ │ ├── .bin │ │ │ │ │ └── config.json │ │ │ │ │ ├── .vscode │ │ │ │ │ ├── arduino.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── tasks.json │ │ │ │ │ ├── WebSocketEcho.ino │ │ │ │ │ └── readme.md │ │ │ ├── library.properties │ │ │ └── src │ │ │ │ ├── WebSocketClient.cpp │ │ │ │ └── WebSocketClient.h │ │ ├── WiFi │ │ │ ├── README.adoc │ │ │ ├── examples │ │ │ │ ├── APmodeWiFiConfig │ │ │ │ │ ├── .bin │ │ │ │ │ │ └── config.json │ │ │ │ │ ├── .vscode │ │ │ │ │ │ ├── arduino.json │ │ │ │ │ │ ├── settings.json │ │ │ │ │ │ └── tasks.json │ │ │ │ │ └── APmodeWiFiConfig.ino │ │ │ │ ├── ConnectWithWPA │ │ │ │ │ ├── .bin │ │ │ │ │ │ └── config.json │ │ │ │ │ ├── .vscode │ │ │ │ │ │ ├── arduino.json │ │ │ │ │ │ ├── settings.json │ │ │ │ │ │ └── tasks.json │ │ │ │ │ └── ConnectWithWPA.ino │ │ │ │ ├── ScanNetworks │ │ │ │ │ ├── .bin │ │ │ │ │ │ └── config.json │ │ │ │ │ ├── .vscode │ │ │ │ │ │ ├── arduino.json │ │ │ │ │ │ ├── settings.json │ │ │ │ │ │ └── tasks.json │ │ │ │ │ └── ScanNetworks.ino │ │ │ │ ├── SimpleWebServerWiFi │ │ │ │ │ ├── .bin │ │ │ │ │ │ └── config.json │ │ │ │ │ ├── .vscode │ │ │ │ │ │ ├── arduino.json │ │ │ │ │ │ ├── settings.json │ │ │ │ │ │ └── tasks.json │ │ │ │ │ └── SimpleWebServerWiFi.ino │ │ │ │ ├── WiFiUdpNtpClient │ │ │ │ │ ├── .bin │ │ │ │ │ │ └── config.json │ │ │ │ │ ├── .vscode │ │ │ │ │ │ ├── arduino.json │ │ │ │ │ │ ├── settings.json │ │ │ │ │ │ └── tasks.json │ │ │ │ │ └── WiFiUdpNtpClient.ino │ │ │ │ ├── WiFiUdpSendReceiveString │ │ │ │ │ ├── .bin │ │ │ │ │ │ └── config.json │ │ │ │ │ ├── .vscode │ │ │ │ │ │ ├── arduino.json │ │ │ │ │ │ ├── settings.json │ │ │ │ │ │ └── tasks.json │ │ │ │ │ └── WiFiUdpSendReceiveString.ino │ │ │ │ ├── WiFiWebClient │ │ │ │ │ ├── .bin │ │ │ │ │ │ └── config.json │ │ │ │ │ ├── .vscode │ │ │ │ │ │ ├── arduino.json │ │ │ │ │ │ ├── settings.json │ │ │ │ │ │ └── tasks.json │ │ │ │ │ └── WiFiWebClient.ino │ │ │ │ └── WiFiWebServer │ │ │ │ │ ├── .bin │ │ │ │ │ └── config.json │ │ │ │ │ ├── .vscode │ │ │ │ │ ├── arduino.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── tasks.json │ │ │ │ │ └── WiFiWebServer.ino │ │ │ ├── keywords.txt │ │ │ ├── library.properties │ │ │ └── src │ │ │ │ ├── AZ3166WiFi.cpp │ │ │ │ ├── AZ3166WiFi.h │ │ │ │ ├── AZ3166WiFiClient.cpp │ │ │ │ ├── AZ3166WiFiClient.h │ │ │ │ ├── AZ3166WiFiServer.cpp │ │ │ │ ├── AZ3166WiFiServer.h │ │ │ │ ├── AZ3166WiFiUdp.cpp │ │ │ │ ├── AZ3166WiFiUdp.h │ │ │ │ └── utility │ │ │ │ ├── debug.h │ │ │ │ ├── wl_definitions.h │ │ │ │ └── wl_types.h │ │ └── Wire │ │ │ ├── Wire.cpp │ │ │ ├── Wire.h │ │ │ ├── keywords.txt │ │ │ └── library.properties │ ├── platform.txt │ ├── programmers.txt │ ├── system │ │ ├── az3166-driver │ │ │ ├── EMW10xxInterface.h │ │ │ ├── HAL_STSAFE-A100.h │ │ │ ├── TARGET_AZ3166 │ │ │ │ ├── mico_board.h │ │ │ │ ├── mico_board_conf.h │ │ │ │ └── wifi_nvram_image.h │ │ │ ├── TARGET_STM │ │ │ │ └── peripherals │ │ │ │ │ └── platform_flash.h │ │ │ ├── emw10xx_lwip_stack.h │ │ │ ├── libraries │ │ │ │ ├── drivers │ │ │ │ │ ├── display │ │ │ │ │ │ └── VGM128064 │ │ │ │ │ │ │ ├── oled.h │ │ │ │ │ │ │ └── oledfont.h │ │ │ │ │ ├── gpio_btn │ │ │ │ │ │ └── gpio_btn.h │ │ │ │ │ └── spi_flash │ │ │ │ │ │ ├── spi_flash.h │ │ │ │ │ │ ├── spi_flash_internal.h │ │ │ │ │ │ └── spi_flash_platform_interface.h │ │ │ │ └── utilities │ │ │ │ │ ├── CheckSumUtils.h │ │ │ │ │ ├── LinkListUtils.h │ │ │ │ │ ├── RingBufferUtils.h │ │ │ │ │ └── StringUtils.h │ │ │ ├── libstsafe.a │ │ │ ├── libwlan │ │ │ │ └── TARGET_EMW1062 │ │ │ │ │ └── libwlan.a │ │ │ ├── lwip_lock.h │ │ │ ├── mico │ │ │ │ ├── include │ │ │ │ │ ├── mico.h │ │ │ │ │ ├── mico_common.h │ │ │ │ │ ├── mico_debug.h │ │ │ │ │ ├── mico_drivers │ │ │ │ │ │ ├── mico_driver_flash.h │ │ │ │ │ │ ├── mico_driver_gpio.h │ │ │ │ │ │ └── mico_driver_i2c.h │ │ │ │ │ ├── mico_platform.h │ │ │ │ │ ├── mico_rtos.h │ │ │ │ │ ├── mico_socket.h │ │ │ │ │ ├── mico_system.h │ │ │ │ │ └── mico_wlan.h │ │ │ │ ├── mxchip_debug.h │ │ │ │ ├── net │ │ │ │ │ └── LwIP │ │ │ │ │ │ ├── lwip-sys │ │ │ │ │ │ ├── arch │ │ │ │ │ │ │ ├── cc.h │ │ │ │ │ │ │ ├── perf.h │ │ │ │ │ │ │ └── sys_arch.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ └── lwipopts.h │ │ │ │ │ │ └── lwip-ver1.4.0.rc1 │ │ │ │ │ │ └── src │ │ │ │ │ │ └── include │ │ │ │ │ │ ├── ipv4 │ │ │ │ │ │ └── lwip │ │ │ │ │ │ │ ├── autoip.h │ │ │ │ │ │ │ ├── icmp.h │ │ │ │ │ │ │ ├── igmp.h │ │ │ │ │ │ │ ├── inet.h │ │ │ │ │ │ │ ├── inet_chksum.h │ │ │ │ │ │ │ ├── ip.h │ │ │ │ │ │ │ ├── ip_addr.h │ │ │ │ │ │ │ └── ip_frag.h │ │ │ │ │ │ ├── lwip │ │ │ │ │ │ ├── api.h │ │ │ │ │ │ ├── api_msg.h │ │ │ │ │ │ ├── arch.h │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── def.h │ │ │ │ │ │ ├── dhcp.h │ │ │ │ │ │ ├── dns.h │ │ │ │ │ │ ├── err.h │ │ │ │ │ │ ├── init.h │ │ │ │ │ │ ├── mdns.h │ │ │ │ │ │ ├── mem.h │ │ │ │ │ │ ├── memp.h │ │ │ │ │ │ ├── memp_std.h │ │ │ │ │ │ ├── netbuf.h │ │ │ │ │ │ ├── netdb.h │ │ │ │ │ │ ├── netif.h │ │ │ │ │ │ ├── netifapi.h │ │ │ │ │ │ ├── opt.h │ │ │ │ │ │ ├── pbuf.h │ │ │ │ │ │ ├── raw.h │ │ │ │ │ │ ├── sio.h │ │ │ │ │ │ ├── snmp.h │ │ │ │ │ │ ├── snmp_asn1.h │ │ │ │ │ │ ├── snmp_msg.h │ │ │ │ │ │ ├── snmp_structs.h │ │ │ │ │ │ ├── sockets.h │ │ │ │ │ │ ├── stats.h │ │ │ │ │ │ ├── sys.h │ │ │ │ │ │ ├── tcp.h │ │ │ │ │ │ ├── tcp_impl.h │ │ │ │ │ │ ├── tcpip.h │ │ │ │ │ │ ├── timers.h │ │ │ │ │ │ └── udp.h │ │ │ │ │ │ └── netif │ │ │ │ │ │ ├── etharp.h │ │ │ │ │ │ ├── ppp_oe.h │ │ │ │ │ │ └── slipif.h │ │ │ │ ├── platform │ │ │ │ │ ├── EWARM │ │ │ │ │ │ └── platform_toolchain.h │ │ │ │ │ ├── GCC │ │ │ │ │ │ └── platform_toolchain.h │ │ │ │ │ ├── RVMDK │ │ │ │ │ │ └── platform_toolchain.h │ │ │ │ │ ├── include │ │ │ │ │ │ ├── platform_assert.h │ │ │ │ │ │ ├── platform_logging.h │ │ │ │ │ │ ├── platform_peripheral.h │ │ │ │ │ │ └── wlan_platform_common.h │ │ │ │ │ └── mbed │ │ │ │ │ │ └── platform_mcu_peripheral.h │ │ │ │ ├── rtos │ │ │ │ │ └── mico_rtos_common.h │ │ │ │ └── system │ │ │ │ │ ├── command_console │ │ │ │ │ └── mico_cli.h │ │ │ │ │ ├── system.h │ │ │ │ │ └── system_internal.h │ │ │ └── mico_config.h │ │ ├── azure-iot-sdk-c │ │ │ ├── azureiotcerts.h │ │ │ ├── c-utility │ │ │ │ ├── inc │ │ │ │ │ └── azure_c_shared_utility │ │ │ │ │ │ ├── agenttime.h │ │ │ │ │ │ ├── azure_base32.h │ │ │ │ │ │ ├── azure_base64.h │ │ │ │ │ │ ├── buffer_.h │ │ │ │ │ │ ├── condition.h │ │ │ │ │ │ ├── connection_string_parser.h │ │ │ │ │ │ ├── consolelogger.h │ │ │ │ │ │ ├── const_defines.h │ │ │ │ │ │ ├── constbuffer.h │ │ │ │ │ │ ├── constmap.h │ │ │ │ │ │ ├── crt_abstractions.h │ │ │ │ │ │ ├── doublylinkedlist.h │ │ │ │ │ │ ├── envvariable.h │ │ │ │ │ │ ├── gb_stdio.h │ │ │ │ │ │ ├── gb_time.h │ │ │ │ │ │ ├── gballoc.h │ │ │ │ │ │ ├── hmac.h │ │ │ │ │ │ ├── hmacsha256.h │ │ │ │ │ │ ├── http_proxy_io.h │ │ │ │ │ │ ├── httpapi.h │ │ │ │ │ │ ├── httpapiex.h │ │ │ │ │ │ ├── httpapiexsas.h │ │ │ │ │ │ ├── httpheaders.h │ │ │ │ │ │ ├── lock.h │ │ │ │ │ │ ├── map.h │ │ │ │ │ │ ├── optimize_size.h │ │ │ │ │ │ ├── optionhandler.h │ │ │ │ │ │ ├── platform.h │ │ │ │ │ │ ├── refcount.h │ │ │ │ │ │ ├── sastoken.h │ │ │ │ │ │ ├── sha-private.h │ │ │ │ │ │ ├── sha.h │ │ │ │ │ │ ├── shared_util_options.h │ │ │ │ │ │ ├── singlylinkedlist.h │ │ │ │ │ │ ├── socketio.h │ │ │ │ │ │ ├── string_token.h │ │ │ │ │ │ ├── string_tokenizer.h │ │ │ │ │ │ ├── string_tokenizer_types.h │ │ │ │ │ │ ├── strings.h │ │ │ │ │ │ ├── strings_types.h │ │ │ │ │ │ ├── tcpsocketconnection_c.h │ │ │ │ │ │ ├── threadapi.h │ │ │ │ │ │ ├── tickcounter.h │ │ │ │ │ │ ├── tlsio.h │ │ │ │ │ │ ├── tlsio_mbedtls.h │ │ │ │ │ │ ├── uniqueid.h │ │ │ │ │ │ ├── urlencode.h │ │ │ │ │ │ ├── uuid.h │ │ │ │ │ │ ├── vector.h │ │ │ │ │ │ ├── vector_types.h │ │ │ │ │ │ ├── vector_types_internal.h │ │ │ │ │ │ ├── wsio.h │ │ │ │ │ │ ├── xio.h │ │ │ │ │ │ └── xlogging.h │ │ │ │ └── pal │ │ │ │ │ └── mbed_os5 │ │ │ │ │ └── refcount_os.h │ │ │ ├── certs │ │ │ │ └── certs.h │ │ │ ├── deps │ │ │ │ ├── azure-macro-utils-c │ │ │ │ │ └── inc │ │ │ │ │ │ └── azure_macro_utils │ │ │ │ │ │ └── macro_utils.h │ │ │ │ ├── parson │ │ │ │ │ └── parson.h │ │ │ │ ├── uhttp │ │ │ │ │ └── inc │ │ │ │ │ │ └── azure_uhttp_c │ │ │ │ │ │ └── uhttp.h │ │ │ │ └── umock-c │ │ │ │ │ └── inc │ │ │ │ │ └── umock_c │ │ │ │ │ ├── umock_c.h │ │ │ │ │ ├── umock_c_internal.h │ │ │ │ │ ├── umock_c_negative_tests.h │ │ │ │ │ ├── umock_c_prod.h │ │ │ │ │ ├── umock_log.h │ │ │ │ │ ├── umockalloc.h │ │ │ │ │ ├── umockautoignoreargs.h │ │ │ │ │ ├── umockcall.h │ │ │ │ │ ├── umockcallpairs.h │ │ │ │ │ ├── umockcallrecorder.h │ │ │ │ │ ├── umockstring.h │ │ │ │ │ ├── umocktypename.h │ │ │ │ │ ├── umocktypes.h │ │ │ │ │ ├── umocktypes_bool.h │ │ │ │ │ ├── umocktypes_c.h │ │ │ │ │ ├── umocktypes_charptr.h │ │ │ │ │ └── umocktypes_stdint.h │ │ │ ├── iothub_client │ │ │ │ └── inc │ │ │ │ │ ├── internal │ │ │ │ │ ├── iothub_client_authorization.h │ │ │ │ │ ├── iothub_client_diagnostic.h │ │ │ │ │ ├── iothub_client_hsm_ll.h │ │ │ │ │ ├── iothub_client_private.h │ │ │ │ │ ├── iothub_client_retry_control.h │ │ │ │ │ ├── iothub_internal_consts.h │ │ │ │ │ ├── iothub_transport_ll_private.h │ │ │ │ │ ├── iothubtransport.h │ │ │ │ │ └── iothubtransport_mqtt_common.h │ │ │ │ │ ├── iothub.h │ │ │ │ │ ├── iothub_client.h │ │ │ │ │ ├── iothub_client_core.h │ │ │ │ │ ├── iothub_client_core_common.h │ │ │ │ │ ├── iothub_client_core_ll.h │ │ │ │ │ ├── iothub_client_ll.h │ │ │ │ │ ├── iothub_client_options.h │ │ │ │ │ ├── iothub_client_version.h │ │ │ │ │ ├── iothub_device_client.h │ │ │ │ │ ├── iothub_device_client_ll.h │ │ │ │ │ ├── iothub_message.h │ │ │ │ │ ├── iothub_module_client.h │ │ │ │ │ ├── iothub_module_client_ll.h │ │ │ │ │ ├── iothub_transport_ll.h │ │ │ │ │ └── iothubtransportmqtt.h │ │ │ ├── provisioning_client │ │ │ │ ├── adapters │ │ │ │ │ ├── hsm_client_data.h │ │ │ │ │ ├── hsm_client_key.h │ │ │ │ │ ├── hsm_client_riot.h │ │ │ │ │ └── hsm_client_riot_individual.h │ │ │ │ ├── deps │ │ │ │ │ └── RIoT │ │ │ │ │ │ └── Reference │ │ │ │ │ │ ├── DICE │ │ │ │ │ │ ├── DiceCore.h │ │ │ │ │ │ └── DiceSha256.h │ │ │ │ │ │ └── RIoT │ │ │ │ │ │ ├── Core │ │ │ │ │ │ ├── RIoTCrypt │ │ │ │ │ │ │ └── include │ │ │ │ │ │ │ │ ├── RiotAes128.h │ │ │ │ │ │ │ │ ├── RiotBase64.h │ │ │ │ │ │ │ │ ├── RiotCrypt.h │ │ │ │ │ │ │ │ ├── RiotDerEnc.h │ │ │ │ │ │ │ │ ├── RiotEcc.h │ │ │ │ │ │ │ │ ├── RiotHmac.h │ │ │ │ │ │ │ │ ├── RiotKdf.h │ │ │ │ │ │ │ │ ├── RiotSha256.h │ │ │ │ │ │ │ │ ├── RiotTarget.h │ │ │ │ │ │ │ │ └── RiotX509Bldr.h │ │ │ │ │ │ └── RiotCore.h │ │ │ │ │ │ ├── RIoT.h │ │ │ │ │ │ └── RiotStatus.h │ │ │ │ └── inc │ │ │ │ │ └── azure_prov_client │ │ │ │ │ ├── internal │ │ │ │ │ ├── iothub_auth_client.h │ │ │ │ │ ├── prov_auth_client.h │ │ │ │ │ ├── prov_sasl_tpm.h │ │ │ │ │ ├── prov_transport_mqtt_common.h │ │ │ │ │ └── prov_transport_private.h │ │ │ │ │ ├── iothub_security_factory.h │ │ │ │ │ ├── prov_client_const.h │ │ │ │ │ ├── prov_device_client.h │ │ │ │ │ ├── prov_device_ll_client.h │ │ │ │ │ ├── prov_security_factory.h │ │ │ │ │ ├── prov_transport.h │ │ │ │ │ ├── prov_transport_http_client.h │ │ │ │ │ └── prov_transport_mqtt_client.h │ │ │ └── umqtt │ │ │ │ └── inc │ │ │ │ └── azure_umqtt_c │ │ │ │ ├── mqtt_client.h │ │ │ │ ├── mqtt_codec.h │ │ │ │ ├── mqtt_message.h │ │ │ │ └── mqttconst.h │ │ ├── libdevkit-sdk-core-lib.a │ │ ├── mbed-os │ │ │ ├── cmsis │ │ │ │ ├── arm_common_tables.h │ │ │ │ ├── arm_const_structs.h │ │ │ │ ├── arm_math.h │ │ │ │ ├── core_ca9.h │ │ │ │ ├── core_caFunc.h │ │ │ │ ├── core_caInstr.h │ │ │ │ ├── core_ca_mmu.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm4_simd.h │ │ │ │ ├── core_cm7.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ ├── core_cmInstr.h │ │ │ │ ├── core_cmSecureAccess.h │ │ │ │ ├── core_cmSimd.h │ │ │ │ ├── core_sc000.h │ │ │ │ └── core_sc300.h │ │ │ ├── drivers │ │ │ │ ├── AnalogIn.h │ │ │ │ ├── AnalogOut.h │ │ │ │ ├── BusIn.h │ │ │ │ ├── BusInOut.h │ │ │ │ ├── BusOut.h │ │ │ │ ├── CAN.h │ │ │ │ ├── DigitalIn.h │ │ │ │ ├── DigitalInOut.h │ │ │ │ ├── DigitalOut.h │ │ │ │ ├── DirHandle.h │ │ │ │ ├── Ethernet.h │ │ │ │ ├── FileBase.h │ │ │ │ ├── FileHandle.h │ │ │ │ ├── FileLike.h │ │ │ │ ├── FilePath.h │ │ │ │ ├── FileSystemLike.h │ │ │ │ ├── FlashIAP.h │ │ │ │ ├── I2C.h │ │ │ │ ├── I2CSlave.h │ │ │ │ ├── InterruptIn.h │ │ │ │ ├── InterruptManager.h │ │ │ │ ├── LocalFileSystem.h │ │ │ │ ├── LowPowerTicker.h │ │ │ │ ├── LowPowerTimeout.h │ │ │ │ ├── LowPowerTimer.h │ │ │ │ ├── MbedStream.h │ │ │ │ ├── PortIn.h │ │ │ │ ├── PortInOut.h │ │ │ │ ├── PortOut.h │ │ │ │ ├── PwmOut.h │ │ │ │ ├── RawSerial.h │ │ │ │ ├── SPI.h │ │ │ │ ├── SPISlave.h │ │ │ │ ├── Serial.h │ │ │ │ ├── SerialBase.h │ │ │ │ ├── Ticker.h │ │ │ │ ├── Timeout.h │ │ │ │ ├── Timer.h │ │ │ │ └── TimerEvent.h │ │ │ ├── events │ │ │ │ ├── Event.h │ │ │ │ ├── EventQueue.h │ │ │ │ ├── equeue │ │ │ │ │ ├── equeue.h │ │ │ │ │ └── equeue_platform.h │ │ │ │ └── mbed_events.h │ │ │ ├── features │ │ │ │ ├── filesystem │ │ │ │ │ ├── Dir.h │ │ │ │ │ ├── File.h │ │ │ │ │ ├── FileSystem.h │ │ │ │ │ ├── bd │ │ │ │ │ │ ├── BlockDevice.h │ │ │ │ │ │ ├── ChainingBlockDevice.h │ │ │ │ │ │ ├── HeapBlockDevice.h │ │ │ │ │ │ └── SlicingBlockDevice.h │ │ │ │ │ ├── fat │ │ │ │ │ │ ├── ChaN │ │ │ │ │ │ │ ├── diskio.h │ │ │ │ │ │ │ ├── ff.h │ │ │ │ │ │ │ ├── ffconf.h │ │ │ │ │ │ │ └── integer.h │ │ │ │ │ │ └── FATFileSystem.h │ │ │ │ │ └── mbed_filesystem.h │ │ │ │ ├── frameworks │ │ │ │ │ ├── greentea-client │ │ │ │ │ │ └── greentea-client │ │ │ │ │ │ │ ├── greentea_metrics.h │ │ │ │ │ │ │ ├── greentea_serial.h │ │ │ │ │ │ │ └── test_env.h │ │ │ │ │ ├── unity │ │ │ │ │ │ └── unity │ │ │ │ │ │ │ ├── unity.h │ │ │ │ │ │ │ ├── unity_config.h │ │ │ │ │ │ │ └── unity_internals.h │ │ │ │ │ └── utest │ │ │ │ │ │ └── utest │ │ │ │ │ │ ├── unity_handler.h │ │ │ │ │ │ ├── utest.h │ │ │ │ │ │ ├── utest_case.h │ │ │ │ │ │ ├── utest_default_handlers.h │ │ │ │ │ │ ├── utest_harness.h │ │ │ │ │ │ ├── utest_scheduler.h │ │ │ │ │ │ ├── utest_serial.h │ │ │ │ │ │ ├── utest_shim.h │ │ │ │ │ │ ├── utest_specification.h │ │ │ │ │ │ ├── utest_stack_trace.h │ │ │ │ │ │ └── utest_types.h │ │ │ │ ├── mbedtls │ │ │ │ │ ├── inc │ │ │ │ │ │ ├── mbedtls │ │ │ │ │ │ │ ├── aes.h │ │ │ │ │ │ │ ├── aesni.h │ │ │ │ │ │ │ ├── arc4.h │ │ │ │ │ │ │ ├── aria.h │ │ │ │ │ │ │ ├── asn1.h │ │ │ │ │ │ │ ├── asn1write.h │ │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ │ ├── bignum.h │ │ │ │ │ │ │ ├── blowfish.h │ │ │ │ │ │ │ ├── bn_mul.h │ │ │ │ │ │ │ ├── camellia.h │ │ │ │ │ │ │ ├── ccm.h │ │ │ │ │ │ │ ├── certs.h │ │ │ │ │ │ │ ├── chacha20.h │ │ │ │ │ │ │ ├── chachapoly.h │ │ │ │ │ │ │ ├── check_config.h │ │ │ │ │ │ │ ├── cipher.h │ │ │ │ │ │ │ ├── cipher_internal.h │ │ │ │ │ │ │ ├── cmac.h │ │ │ │ │ │ │ ├── compat-1.3.h │ │ │ │ │ │ │ ├── config-no-entropy.h │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── ctr_drbg.h │ │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ │ ├── des.h │ │ │ │ │ │ │ ├── dhm.h │ │ │ │ │ │ │ ├── ecdh.h │ │ │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ │ │ ├── ecjpake.h │ │ │ │ │ │ │ ├── ecp.h │ │ │ │ │ │ │ ├── ecp_internal.h │ │ │ │ │ │ │ ├── entropy.h │ │ │ │ │ │ │ ├── entropy_poll.h │ │ │ │ │ │ │ ├── error.h │ │ │ │ │ │ │ ├── gcm.h │ │ │ │ │ │ │ ├── havege.h │ │ │ │ │ │ │ ├── hkdf.h │ │ │ │ │ │ │ ├── hmac_drbg.h │ │ │ │ │ │ │ ├── md.h │ │ │ │ │ │ │ ├── md2.h │ │ │ │ │ │ │ ├── md4.h │ │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ │ ├── md_internal.h │ │ │ │ │ │ │ ├── memory_buffer_alloc.h │ │ │ │ │ │ │ ├── net.h │ │ │ │ │ │ │ ├── net_sockets.h │ │ │ │ │ │ │ ├── nist_kw.h │ │ │ │ │ │ │ ├── oid.h │ │ │ │ │ │ │ ├── padlock.h │ │ │ │ │ │ │ ├── pem.h │ │ │ │ │ │ │ ├── pk.h │ │ │ │ │ │ │ ├── pk_internal.h │ │ │ │ │ │ │ ├── pkcs11.h │ │ │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ │ │ ├── pkcs5.h │ │ │ │ │ │ │ ├── platform.h │ │ │ │ │ │ │ ├── platform_time.h │ │ │ │ │ │ │ ├── platform_util.h │ │ │ │ │ │ │ ├── poly1305.h │ │ │ │ │ │ │ ├── psa_util.h │ │ │ │ │ │ │ ├── ripemd160.h │ │ │ │ │ │ │ ├── rsa.h │ │ │ │ │ │ │ ├── rsa_internal.h │ │ │ │ │ │ │ ├── sha1.h │ │ │ │ │ │ │ ├── sha256.h │ │ │ │ │ │ │ ├── sha512.h │ │ │ │ │ │ │ ├── ssl.h │ │ │ │ │ │ │ ├── ssl_cache.h │ │ │ │ │ │ │ ├── ssl_ciphersuites.h │ │ │ │ │ │ │ ├── ssl_cookie.h │ │ │ │ │ │ │ ├── ssl_internal.h │ │ │ │ │ │ │ ├── ssl_ticket.h │ │ │ │ │ │ │ ├── threading.h │ │ │ │ │ │ │ ├── timing.h │ │ │ │ │ │ │ ├── version.h │ │ │ │ │ │ │ ├── x509.h │ │ │ │ │ │ │ ├── x509_crl.h │ │ │ │ │ │ │ ├── x509_crt.h │ │ │ │ │ │ │ ├── x509_csr.h │ │ │ │ │ │ │ └── xtea.h │ │ │ │ │ │ └── psa │ │ │ │ │ │ │ ├── crypto.h │ │ │ │ │ │ │ ├── crypto_driver.h │ │ │ │ │ │ │ ├── crypto_extra.h │ │ │ │ │ │ │ ├── crypto_platform.h │ │ │ │ │ │ │ └── crypto_sizes.h │ │ │ │ │ ├── platform │ │ │ │ │ │ └── inc │ │ │ │ │ │ │ ├── platform_alt.h │ │ │ │ │ │ │ └── platform_mbed.h │ │ │ │ │ └── targets │ │ │ │ │ │ └── TARGET_STM │ │ │ │ │ │ ├── aes_alt.h │ │ │ │ │ │ ├── md5_alt.h │ │ │ │ │ │ ├── sha1_alt.h │ │ │ │ │ │ └── sha256_alt.h │ │ │ │ └── netsocket │ │ │ │ │ ├── CellularInterface.h │ │ │ │ │ ├── EthInterface.h │ │ │ │ │ ├── MeshInterface.h │ │ │ │ │ ├── NetworkInterface.h │ │ │ │ │ ├── NetworkStack.h │ │ │ │ │ ├── Socket.h │ │ │ │ │ ├── SocketAddress.h │ │ │ │ │ ├── TCPServer.h │ │ │ │ │ ├── TCPSocket.h │ │ │ │ │ ├── UDPSocket.h │ │ │ │ │ ├── WiFiAccessPoint.h │ │ │ │ │ ├── WiFiInterface.h │ │ │ │ │ ├── emac_stack_mem.h │ │ │ │ │ ├── nsapi.h │ │ │ │ │ ├── nsapi_dns.h │ │ │ │ │ └── nsapi_types.h │ │ │ ├── hal │ │ │ │ ├── analogin_api.h │ │ │ │ ├── analogout_api.h │ │ │ │ ├── buffer.h │ │ │ │ ├── can_api.h │ │ │ │ ├── can_helper.h │ │ │ │ ├── dma_api.h │ │ │ │ ├── emac_api.h │ │ │ │ ├── ethernet_api.h │ │ │ │ ├── flash_api.h │ │ │ │ ├── gpio_api.h │ │ │ │ ├── gpio_irq_api.h │ │ │ │ ├── i2c_api.h │ │ │ │ ├── lp_ticker_api.h │ │ │ │ ├── pinmap.h │ │ │ │ ├── port_api.h │ │ │ │ ├── pwmout_api.h │ │ │ │ ├── rtc_api.h │ │ │ │ ├── serial_api.h │ │ │ │ ├── sleep_api.h │ │ │ │ ├── spi_api.h │ │ │ │ ├── storage_abstraction │ │ │ │ │ ├── Driver_Common.h │ │ │ │ │ └── Driver_Storage.h │ │ │ │ ├── ticker_api.h │ │ │ │ ├── trng_api.h │ │ │ │ └── us_ticker_api.h │ │ │ ├── mbed.h │ │ │ ├── platform │ │ │ │ ├── CThunk.h │ │ │ │ ├── CallChain.h │ │ │ │ ├── Callback.h │ │ │ │ ├── CircularBuffer.h │ │ │ │ ├── FunctionPointer.h │ │ │ │ ├── PlatformMutex.h │ │ │ │ ├── SingletonPtr.h │ │ │ │ ├── Transaction.h │ │ │ │ ├── critical.h │ │ │ │ ├── mbed_application.h │ │ │ │ ├── mbed_assert.h │ │ │ │ ├── mbed_critical.h │ │ │ │ ├── mbed_debug.h │ │ │ │ ├── mbed_error.h │ │ │ │ ├── mbed_interface.h │ │ │ │ ├── mbed_mem_trace.h │ │ │ │ ├── mbed_preprocessor.h │ │ │ │ ├── mbed_retarget.h │ │ │ │ ├── mbed_rtc_time.h │ │ │ │ ├── mbed_semihost_api.h │ │ │ │ ├── mbed_sleep.h │ │ │ │ ├── mbed_stats.h │ │ │ │ ├── mbed_toolchain.h │ │ │ │ ├── mbed_wait_api.h │ │ │ │ ├── platform.h │ │ │ │ ├── rtc_time.h │ │ │ │ ├── semihost_api.h │ │ │ │ ├── sleep.h │ │ │ │ ├── toolchain.h │ │ │ │ └── wait_api.h │ │ │ ├── rtos │ │ │ │ ├── Mail.h │ │ │ │ ├── MemoryPool.h │ │ │ │ ├── Mutex.h │ │ │ │ ├── Queue.h │ │ │ │ ├── RtosTimer.h │ │ │ │ ├── Semaphore.h │ │ │ │ ├── Thread.h │ │ │ │ ├── rtos.h │ │ │ │ ├── rtos_idle.h │ │ │ │ └── rtx │ │ │ │ │ └── TARGET_CORTEX_M │ │ │ │ │ ├── RTX_CM_lib.h │ │ │ │ │ ├── RTX_Config.h │ │ │ │ │ ├── cmsis_os.h │ │ │ │ │ ├── rt_Event.h │ │ │ │ │ ├── rt_HAL_CM.h │ │ │ │ │ ├── rt_List.h │ │ │ │ │ ├── rt_Mailbox.h │ │ │ │ │ ├── rt_MemBox.h │ │ │ │ │ ├── rt_Memory.h │ │ │ │ │ ├── rt_Mutex.h │ │ │ │ │ ├── rt_OsEventObserver.h │ │ │ │ │ ├── rt_Robin.h │ │ │ │ │ ├── rt_Semaphore.h │ │ │ │ │ ├── rt_System.h │ │ │ │ │ ├── rt_Task.h │ │ │ │ │ ├── rt_Time.h │ │ │ │ │ ├── rt_Timer.h │ │ │ │ │ └── rt_TypeDef.h │ │ │ └── targets │ │ │ │ ├── TARGET_MXCHIP │ │ │ │ ├── TARGET_AZ3166 │ │ │ │ │ ├── PeripheralNames.h │ │ │ │ │ ├── PeripheralPins_Extra.h │ │ │ │ │ ├── PinNames.h │ │ │ │ │ ├── device │ │ │ │ │ │ ├── cmsis.h │ │ │ │ │ │ ├── cmsis_nvic.h │ │ │ │ │ │ ├── hal_tick.h │ │ │ │ │ │ ├── stm32f412zx.h │ │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ │ ├── stm32f4xx_hal_conf.h │ │ │ │ │ │ └── system_stm32f4xx.h │ │ │ │ │ └── objects.h │ │ │ │ └── mbed_rtx.h │ │ │ │ ├── TARGET_STM │ │ │ │ ├── PeripheralPins.h │ │ │ │ ├── PinNamesTypes.h │ │ │ │ ├── PortNames.h │ │ │ │ ├── TARGET_STM32F4 │ │ │ │ │ ├── can_device.h │ │ │ │ │ ├── common_objects.h │ │ │ │ │ ├── device.h │ │ │ │ │ ├── device │ │ │ │ │ │ ├── stm32_hal_legacy.h │ │ │ │ │ │ ├── stm32f4xx_hal.h │ │ │ │ │ │ ├── stm32f4xx_hal_adc.h │ │ │ │ │ │ ├── stm32f4xx_hal_adc_ex.h │ │ │ │ │ │ ├── stm32f4xx_hal_can.h │ │ │ │ │ │ ├── stm32f4xx_hal_cec.h │ │ │ │ │ │ ├── stm32f4xx_hal_conf.h │ │ │ │ │ │ ├── stm32f4xx_hal_cortex.h │ │ │ │ │ │ ├── stm32f4xx_hal_crc.h │ │ │ │ │ │ ├── stm32f4xx_hal_cryp.h │ │ │ │ │ │ ├── stm32f4xx_hal_cryp_ex.h │ │ │ │ │ │ ├── stm32f4xx_hal_dac.h │ │ │ │ │ │ ├── stm32f4xx_hal_dac_ex.h │ │ │ │ │ │ ├── stm32f4xx_hal_dcmi.h │ │ │ │ │ │ ├── stm32f4xx_hal_dcmi_ex.h │ │ │ │ │ │ ├── stm32f4xx_hal_def.h │ │ │ │ │ │ ├── stm32f4xx_hal_dfsdm.h │ │ │ │ │ │ ├── stm32f4xx_hal_dma.h │ │ │ │ │ │ ├── stm32f4xx_hal_dma2d.h │ │ │ │ │ │ ├── stm32f4xx_hal_dma_ex.h │ │ │ │ │ │ ├── stm32f4xx_hal_dsi.h │ │ │ │ │ │ ├── stm32f4xx_hal_eth.h │ │ │ │ │ │ ├── stm32f4xx_hal_flash.h │ │ │ │ │ │ ├── stm32f4xx_hal_flash_ex.h │ │ │ │ │ │ ├── stm32f4xx_hal_flash_ramfunc.h │ │ │ │ │ │ ├── stm32f4xx_hal_fmpi2c.h │ │ │ │ │ │ ├── stm32f4xx_hal_fmpi2c_ex.h │ │ │ │ │ │ ├── stm32f4xx_hal_gpio.h │ │ │ │ │ │ ├── stm32f4xx_hal_gpio_ex.h │ │ │ │ │ │ ├── stm32f4xx_hal_hash.h │ │ │ │ │ │ ├── stm32f4xx_hal_hash_ex.h │ │ │ │ │ │ ├── stm32f4xx_hal_hcd.h │ │ │ │ │ │ ├── stm32f4xx_hal_i2c.h │ │ │ │ │ │ ├── stm32f4xx_hal_i2c_ex.h │ │ │ │ │ │ ├── stm32f4xx_hal_i2s.h │ │ │ │ │ │ ├── stm32f4xx_hal_i2s_ex.h │ │ │ │ │ │ ├── stm32f4xx_hal_irda.h │ │ │ │ │ │ ├── stm32f4xx_hal_iwdg.h │ │ │ │ │ │ ├── stm32f4xx_hal_lptim.h │ │ │ │ │ │ ├── stm32f4xx_hal_ltdc.h │ │ │ │ │ │ ├── stm32f4xx_hal_ltdc_ex.h │ │ │ │ │ │ ├── stm32f4xx_hal_nand.h │ │ │ │ │ │ ├── stm32f4xx_hal_nor.h │ │ │ │ │ │ ├── stm32f4xx_hal_pccard.h │ │ │ │ │ │ ├── stm32f4xx_hal_pcd.h │ │ │ │ │ │ ├── stm32f4xx_hal_pcd_ex.h │ │ │ │ │ │ ├── stm32f4xx_hal_pwr.h │ │ │ │ │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ │ │ │ │ ├── stm32f4xx_hal_qspi.h │ │ │ │ │ │ ├── stm32f4xx_hal_rcc.h │ │ │ │ │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ │ │ │ │ ├── stm32f4xx_hal_rng.h │ │ │ │ │ │ ├── stm32f4xx_hal_rtc.h │ │ │ │ │ │ ├── stm32f4xx_hal_rtc_ex.h │ │ │ │ │ │ ├── stm32f4xx_hal_sai.h │ │ │ │ │ │ ├── stm32f4xx_hal_sai_ex.h │ │ │ │ │ │ ├── stm32f4xx_hal_sd.h │ │ │ │ │ │ ├── stm32f4xx_hal_sdram.h │ │ │ │ │ │ ├── stm32f4xx_hal_smartcard.h │ │ │ │ │ │ ├── stm32f4xx_hal_spdifrx.h │ │ │ │ │ │ ├── stm32f4xx_hal_spi.h │ │ │ │ │ │ ├── stm32f4xx_hal_sram.h │ │ │ │ │ │ ├── stm32f4xx_hal_tim.h │ │ │ │ │ │ ├── stm32f4xx_hal_tim_ex.h │ │ │ │ │ │ ├── stm32f4xx_hal_uart.h │ │ │ │ │ │ ├── stm32f4xx_hal_usart.h │ │ │ │ │ │ ├── stm32f4xx_hal_wwdg.h │ │ │ │ │ │ ├── stm32f4xx_ll_fmc.h │ │ │ │ │ │ ├── stm32f4xx_ll_fsmc.h │ │ │ │ │ │ ├── stm32f4xx_ll_sdmmc.h │ │ │ │ │ │ └── stm32f4xx_ll_usb.h │ │ │ │ │ ├── gpio_irq_device.h │ │ │ │ │ ├── i2c_device.h │ │ │ │ │ ├── pin_device.h │ │ │ │ │ └── pwmout_device.h │ │ │ │ ├── gpio_object.h │ │ │ │ ├── mbed_rtx.h │ │ │ │ └── rtc_api_hal.h │ │ │ │ └── targets.json │ │ ├── mbed_config.h │ │ └── utilities │ │ │ └── mbed_memory_status.h │ └── variants │ │ └── MXChip_AZ3166 │ │ ├── linker_scripts │ │ └── gcc │ │ │ └── AZ3166.ld │ │ ├── pins_arduino.h │ │ └── variant.h ├── tests │ ├── AzureIotHubExample │ │ ├── AzureIotHubExample.ino │ │ ├── azure_iot_hub.h │ │ ├── iot_hub_mqtt_example.cpp │ │ ├── iot_hub_mqtt_example.h │ │ └── readme.md │ ├── BoardInit │ │ ├── BoardInit.ino │ │ └── readme.md │ ├── HttpTest │ │ └── HttpTest.ino │ ├── SPITest │ │ └── examples │ │ │ ├── BarometricPressureSensor │ │ │ └── BarometricPressureSensor.ino │ │ │ └── DigitalPotControl │ │ │ └── DigitalPotControl.ino │ ├── UnitTest │ │ ├── APMode.ino │ │ ├── ArduinoLanguageTest.ino │ │ ├── AttchInterrupt.ino │ │ ├── MemoryStatusTest.ino │ │ ├── OledDisplay.ino │ │ ├── Sensor.ino │ │ ├── UnitTest.ino │ │ └── config.h │ ├── VoiceToTwitter │ │ ├── examples │ │ │ └── VoiceToTwitter │ │ │ │ ├── .bin │ │ │ │ ├── azuredeploy.json │ │ │ │ └── config.json │ │ │ │ ├── .vscode │ │ │ │ ├── arduino.json │ │ │ │ ├── settings.json │ │ │ │ └── tasks.json │ │ │ │ ├── VoiceToTwitter.ino │ │ │ │ ├── azureFunction │ │ │ │ ├── VoiceToTwitter-cs │ │ │ │ │ ├── Project.json │ │ │ │ │ ├── function.json │ │ │ │ │ └── run.csx │ │ │ │ └── VoiceToTwitter-node │ │ │ │ │ ├── config.json │ │ │ │ │ ├── function.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── iot_client.cpp │ │ │ │ ├── iot_client.h │ │ │ │ └── readme.md │ │ ├── keywords.txt │ │ └── library.properties │ └── WireTest │ │ └── examples │ │ ├── SFRRanger_reader │ │ └── SFRRanger_reader.pde │ │ ├── digital_potentiometer │ │ └── digital_potentiometer.pde │ │ ├── master_reader │ │ └── master_reader.pde │ │ ├── master_writer │ │ └── master_writer.pde │ │ ├── slave_receiver │ │ └── slave_receiver.pde │ │ └── slave_sender │ │ └── slave_sender.pde └── tools │ └── dice_device_enrollment │ └── src │ ├── dice_device_enrollment.sln │ └── dice_device_enrollment │ ├── DICE │ ├── DiceCore.c │ ├── DiceCore.h │ ├── DiceSha256.c │ └── DiceSha256.h │ ├── DiceRIoT.cpp │ ├── DiceRIoT.h │ ├── RIoT │ ├── Core │ │ ├── RIoTCrypt │ │ │ ├── RiotAes128.c │ │ │ ├── RiotAesTables.c │ │ │ ├── RiotBase64.c │ │ │ ├── RiotCrypt.c │ │ │ ├── RiotDerEnc.c │ │ │ ├── RiotEcc.c │ │ │ ├── RiotHmac.c │ │ │ ├── RiotKdf.c │ │ │ ├── RiotSha256.c │ │ │ ├── RiotX509Bldr.c │ │ │ ├── def.c │ │ │ └── include │ │ │ │ ├── RiotAes128.h │ │ │ │ ├── RiotBase64.h │ │ │ │ ├── RiotCrypt.h │ │ │ │ ├── RiotDerEnc.h │ │ │ │ ├── RiotEcc.h │ │ │ │ ├── RiotHmac.h │ │ │ │ ├── RiotKdf.h │ │ │ │ ├── RiotSha256.h │ │ │ │ ├── RiotTarget.h │ │ │ │ ├── RiotX509Bldr.h │ │ │ │ └── def.h │ │ ├── RiotCore.c │ │ └── RiotCore.h │ ├── RIoT.h │ └── RiotStatus.h │ ├── ReadMe.txt │ ├── dice_device_enrollment.cpp │ ├── dice_device_enrollment.vcxproj │ ├── dice_device_enrollment.vcxproj.filters │ ├── generateMake.py │ └── makefile ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE.txt ├── README.md ├── azure-pipelines-1.yml ├── azure-pipelines.yml └── package_azureboard_index.json /.github/workflows/close-resolved-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/.github/workflows/close-resolved-issues.yml -------------------------------------------------------------------------------- /.github/workflows/need-attention-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/.github/workflows/need-attention-issues.yml -------------------------------------------------------------------------------- /.github/workflows/stale-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/.github/workflows/stale-issues.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /AZ3166/jenkins/DevKitTestTool/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/DevKitTestTool/App.config -------------------------------------------------------------------------------- /AZ3166/jenkins/DevKitTestTool/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/DevKitTestTool/Constants.cs -------------------------------------------------------------------------------- /AZ3166/jenkins/DevKitTestTool/DevKitTestTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/DevKitTestTool/DevKitTestTool.csproj -------------------------------------------------------------------------------- /AZ3166/jenkins/DevKitTestTool/DevKitTestTool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/DevKitTestTool/DevKitTestTool.sln -------------------------------------------------------------------------------- /AZ3166/jenkins/DevKitTestTool/InstallationPackageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/DevKitTestTool/InstallationPackageTest.cs -------------------------------------------------------------------------------- /AZ3166/jenkins/DevKitTestTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/DevKitTestTool/Program.cs -------------------------------------------------------------------------------- /AZ3166/jenkins/DevKitTestTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/DevKitTestTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AZ3166/jenkins/DevKitTestTool/SerialPortListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/DevKitTestTool/SerialPortListener.cs -------------------------------------------------------------------------------- /AZ3166/jenkins/DevKitTestTool/excludedTests.txt: -------------------------------------------------------------------------------- 1 | GetStarted.ino 2 | -------------------------------------------------------------------------------- /AZ3166/jenkins/InstallationPackageScript/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/InstallationPackageScript/.babelrc -------------------------------------------------------------------------------- /AZ3166/jenkins/InstallationPackageScript/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/InstallationPackageScript/gulpfile.js -------------------------------------------------------------------------------- /AZ3166/jenkins/InstallationPackageScript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/InstallationPackageScript/package.json -------------------------------------------------------------------------------- /AZ3166/jenkins/InstallationPackageScript/src/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/InstallationPackageScript/src/generate.js -------------------------------------------------------------------------------- /AZ3166/jenkins/InstallationPackageScript/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/InstallationPackageScript/src/index.js -------------------------------------------------------------------------------- /AZ3166/jenkins/InstallationPackageScript/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/InstallationPackageScript/src/util.js -------------------------------------------------------------------------------- /AZ3166/jenkins/JobConfig/CppCheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/JobConfig/CppCheck.xml -------------------------------------------------------------------------------- /AZ3166/jenkins/JobConfig/CreatActiveProgramFireware.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/JobConfig/CreatActiveProgramFireware.xml -------------------------------------------------------------------------------- /AZ3166/jenkins/JobConfig/DevKitProdDeploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/JobConfig/DevKitProdDeploy.xml -------------------------------------------------------------------------------- /AZ3166/jenkins/JobConfig/DevKitStagingDeploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/JobConfig/DevKitStagingDeploy.xml -------------------------------------------------------------------------------- /AZ3166/jenkins/JobConfig/DevkitBuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/JobConfig/DevkitBuild.xml -------------------------------------------------------------------------------- /AZ3166/jenkins/JobConfig/SpellCheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/JobConfig/SpellCheck.xml -------------------------------------------------------------------------------- /AZ3166/jenkins/deployment/DevKitDeploy-forPnP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/deployment/DevKitDeploy-forPnP.ps1 -------------------------------------------------------------------------------- /AZ3166/jenkins/deployment/DevKitDeploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/deployment/DevKitDeploy.ps1 -------------------------------------------------------------------------------- /AZ3166/jenkins/deployment/DevKitTestToolDeploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/deployment/DevKitTestToolDeploy.ps1 -------------------------------------------------------------------------------- /AZ3166/jenkins/deployment/GenerateBinFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/jenkins/deployment/GenerateBinFile.py -------------------------------------------------------------------------------- /AZ3166/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/README.md -------------------------------------------------------------------------------- /AZ3166/src/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/boards.txt -------------------------------------------------------------------------------- /AZ3166/src/bootloader/boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/bootloader/boot.bin -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/Arduino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/Arduino.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/AttachInterrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/AttachInterrupt.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/AttachInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/AttachInterrupt.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/BufferedSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/BufferedSerial.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/BufferedSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/BufferedSerial.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/EEPROMInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/EEPROMInterface.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/EEPROMInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/EEPROMInterface.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/HardwareSerial.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/IPAddress.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/IPAddress.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/NTPClient/NTPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/NTPClient/NTPClient.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/NTPClient/NTPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/NTPClient/NTPClient.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/OledDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/OledDisplay.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/OledDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/OledDisplay.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/Print.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/Printable.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/RingBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/RingBuffer.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/RingBuffer.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/Stream.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/Stream.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/TLSSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/TLSSocket.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/TLSSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/TLSSocket.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/Telemetry/Telemetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/Telemetry/Telemetry.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/Telemetry/Telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/Telemetry/Telemetry.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/Telemetry/TelemetryClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/Telemetry/TelemetryClient.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/Telemetry/TelemetryClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/Telemetry/TelemetryClient.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/UARTClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/UARTClass.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/UARTClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/UARTClass.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/WCharacter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/WCharacter.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/WCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/WCharacter.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/WMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/WMath.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/WMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/WMath.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/WString.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/WString.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/Watchdog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/Watchdog.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/Watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/Watchdog.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/cli/console_cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/cli/console_cli.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/cli/console_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/cli/console_cli.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/floatIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/floatIO.c -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/floatIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/floatIO.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpclient/http_c_response.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpclient/http_c_response.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpclient/http_c_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpclient/http_c_response.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpclient/http_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpclient/http_client.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpclient/http_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpclient/http_client.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpclient/http_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpclient/http_common.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpclient/http_header_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpclient/http_header_builder.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpclient/http_header_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpclient/http_header_builder.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpclient/http_parsed_url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpclient/http_parsed_url.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpclient/http_parsed_url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpclient/http_parsed_url.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpclient/http_parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpclient/http_parser/LICENSE -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpclient/http_parser/http_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpclient/http_parser/http_parser.c -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpclient/http_parser/http_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpclient/http_parser/http_parser.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpclient/http_response_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpclient/http_response_parser.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpclient/http_response_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpclient/http_response_parser.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpclient/https_request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpclient/https_request.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpclient/https_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpclient/https_request.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpserver/app_httpd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpserver/app_httpd.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpserver/app_httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpserver/app_httpd.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpserver/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpserver/helper.c -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpserver/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpserver/helper.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpserver/http-strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpserver/http-strings.c -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpserver/http-strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpserver/http-strings.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpserver/http_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpserver/http_parse.c -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpserver/http_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpserver/http_parse.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpserver/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpserver/httpd.c -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpserver/httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpserver/httpd.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpserver/httpd_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpserver/httpd_handle.c -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpserver/httpd_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpserver/httpd_handle.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpserver/httpd_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpserver/httpd_sys.c -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpserver/httpd_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpserver/httpd_sys.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpserver/httpd_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpserver/httpd_utility.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpserver/httpd_wsgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpserver/httpd_wsgi.c -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/httpserver/httpd_wsgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/httpserver/httpd_wsgi.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/pgmspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/pgmspace.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/pgmspace.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/OTAFirmwareUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/OTAFirmwareUpdate.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/OTAFirmwareUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/OTAFirmwareUpdate.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/SerialLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/SerialLog.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/SerialLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/SerialLog.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/SystemDns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/SystemDns.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/SystemDns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/SystemDns.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/SystemFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/SystemFunc.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/SystemFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/SystemFunc.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/SystemTickCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/SystemTickCounter.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/SystemTickCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/SystemTickCounter.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/SystemTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/SystemTime.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/SystemTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/SystemTime.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/SystemVariables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/SystemVariables.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/SystemVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/SystemVariables.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/SystemVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/SystemVersion.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/SystemVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/SystemVersion.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/SystemWeb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/SystemWeb.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/SystemWeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/SystemWeb.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/SystemWiFi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/SystemWiFi.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/SystemWiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/SystemWiFi.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/_main_arduino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/_main_arduino.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/system/_main_sys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/system/_main_sys.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/wiring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/wiring.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/wiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/wiring.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/wiring_analog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/wiring_analog.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/wiring_analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/wiring_analog.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/wiring_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/wiring_constants.h -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/wiring_digital.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/wiring_digital.cpp -------------------------------------------------------------------------------- /AZ3166/src/cores/arduino/wiring_digital.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/cores/arduino/wiring_digital.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/examples/VoiceRecord/.bin/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "sketch": "../VoiceRecord.ino" 3 | } -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/examples/VoiceRecord/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Audio/examples/VoiceRecord/.vscode/arduino.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/examples/VoiceRecord/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Audio/examples/VoiceRecord/.vscode/settings.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/examples/VoiceRecord/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Audio/examples/VoiceRecord/.vscode/tasks.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/examples/VoiceRecord/VoiceRecord.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Audio/examples/VoiceRecord/VoiceRecord.ino -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/examples/VoiceRecord/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Audio/examples/VoiceRecord/readme.md -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Audio/library.properties -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/src/AudioClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Audio/src/AudioClass.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/src/AudioClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Audio/src/AudioClass.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/src/audio_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Audio/src/audio_common.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/src/nau88c10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Audio/src/nau88c10.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/src/nau88c10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Audio/src/nau88c10.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/src/stm32412g_discovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Audio/src/stm32412g_discovery.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/src/stm32412g_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Audio/src/stm32412g_discovery.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/src/stm32412g_discovery_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Audio/src/stm32412g_discovery_audio.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/src/stm32412g_discovery_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Audio/src/stm32412g_discovery_audio.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Audio/src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Audio/src/stm32f4xx_it.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/Audio/src/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Audio/src/stm32f4xx_it.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/examples/RecordVoiceToWAV/.bin/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "sketch": "../RecordVoiceToWAV.ino" 3 | } -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/examples/RecordVoiceToWAV/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/examples/RecordVoiceToWAV/.vscode/arduino.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/examples/RecordVoiceToWAV/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/examples/RecordVoiceToWAV/.vscode/settings.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/examples/RecordVoiceToWAV/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/examples/RecordVoiceToWAV/.vscode/tasks.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/examples/RecordVoiceToWAV/RecordVoiceToWAV.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/examples/RecordVoiceToWAV/RecordVoiceToWAV.ino -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/examples/RecordVoiceToWAV/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/examples/RecordVoiceToWAV/readme.md -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/examples/VoiceRecord/.bin/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "sketch": "../VoiceRecord.ino" 3 | } -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/examples/VoiceRecord/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/examples/VoiceRecord/.vscode/arduino.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/examples/VoiceRecord/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/examples/VoiceRecord/.vscode/settings.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/examples/VoiceRecord/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/examples/VoiceRecord/.vscode/tasks.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/examples/VoiceRecord/VoiceRecord.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/examples/VoiceRecord/VoiceRecord.ino -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/examples/VoiceRecord/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/examples/VoiceRecord/readme.md -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/library.properties -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/src/AudioClassV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/src/AudioClassV2.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/src/AudioClassV2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/src/AudioClassV2.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/src/audio_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/src/audio_common.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/src/nau88c10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/src/nau88c10.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/src/nau88c10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/src/nau88c10.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/src/stm32412g_discovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/src/stm32412g_discovery.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/src/stm32412g_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/src/stm32412g_discovery.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/src/stm32412g_discovery_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/src/stm32412g_discovery_audio.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/src/stm32412g_discovery_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/src/stm32412g_discovery_audio.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/src/stm32f4xx_it.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/AudioV2/src/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AudioV2/src/stm32f4xx_it.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/AzureIoT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AzureIoT/README.md -------------------------------------------------------------------------------- /AZ3166/src/libraries/AzureIoT/examples/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AzureIoT/examples/examples.md -------------------------------------------------------------------------------- /AZ3166/src/libraries/AzureIoT/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AzureIoT/keywords.txt -------------------------------------------------------------------------------- /AZ3166/src/libraries/AzureIoT/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AzureIoT/library.properties -------------------------------------------------------------------------------- /AZ3166/src/libraries/AzureIoT/src/AzureIotHub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AzureIoT/src/AzureIotHub.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/AzureIoT/src/AzureIotHub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AzureIoT/src/AzureIotHub.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/AzureIoT/src/DevKitMQTTClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AzureIoT/src/DevKitMQTTClient.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/AzureIoT/src/DevKitMQTTClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AzureIoT/src/DevKitMQTTClient.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/AzureIoT/src/DevKitOTAUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AzureIoT/src/DevKitOTAUtils.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/AzureIoT/src/DevKitOTAUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AzureIoT/src/DevKitOTAUtils.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/AzureIoT/src/DevkitDPSClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AzureIoT/src/DevkitDPSClient.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/AzureIoT/src/DevkitDPSClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/AzureIoT/src/DevkitDPSClient.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/FileSystem/examples/FileSystem/.bin/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "sketch": "../FileSystem.ino" 3 | } -------------------------------------------------------------------------------- /AZ3166/src/libraries/FileSystem/examples/FileSystem/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/FileSystem/examples/FileSystem/.vscode/arduino.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/FileSystem/examples/FileSystem/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/FileSystem/examples/FileSystem/.vscode/settings.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/FileSystem/examples/FileSystem/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/FileSystem/examples/FileSystem/.vscode/tasks.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/FileSystem/examples/FileSystem/FileSystem.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/FileSystem/examples/FileSystem/FileSystem.ino -------------------------------------------------------------------------------- /AZ3166/src/libraries/FileSystem/examples/FileSystem/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/FileSystem/examples/FileSystem/readme.md -------------------------------------------------------------------------------- /AZ3166/src/libraries/FileSystem/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/FileSystem/library.properties -------------------------------------------------------------------------------- /AZ3166/src/libraries/FileSystem/src/SFlashBlockDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/FileSystem/src/SFlashBlockDevice.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/FileSystem/src/SFlashBlockDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/FileSystem/src/SFlashBlockDevice.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/FileSystem/src/fatfs_exfuns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/FileSystem/src/fatfs_exfuns.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/FileSystem/src/fatfs_exfuns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/FileSystem/src/fatfs_exfuns.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/examples/MQTTClient/.bin/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "sketch": "../MQTTClient.ino" 3 | } -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/examples/MQTTClient/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/examples/MQTTClient/.vscode/arduino.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/examples/MQTTClient/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/examples/MQTTClient/.vscode/settings.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/examples/MQTTClient/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/examples/MQTTClient/.vscode/tasks.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/examples/MQTTClient/MQTTClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/examples/MQTTClient/MQTTClient.ino -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/examples/MQTTClient/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/examples/MQTTClient/readme.md -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/library.properties -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/FP/FP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/FP/FP.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTAsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTAsync.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTClient.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTNetwork.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTConnect.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTConnectClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTConnectClient.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTConnectServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTConnectServer.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTDeserializePublish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTDeserializePublish.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTPacket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTPacket.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTPacket.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTPublish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTPublish.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTSerializePublish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTSerializePublish.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTSubscribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTSubscribe.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTSubscribeClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTSubscribeClient.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTSubscribeServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTSubscribeServer.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTUnsubscribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTUnsubscribe.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTUnsubscribeClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTUnsubscribeClient.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTUnsubscribeServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTPacket/MQTTUnsubscribeServer.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTPacket/StackTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTPacket/StackTrace.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/MQTT/src/MQTTmbed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/MQTT/src/MQTTmbed.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/SPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/SPI/keywords.txt -------------------------------------------------------------------------------- /AZ3166/src/libraries/SPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/SPI/library.properties -------------------------------------------------------------------------------- /AZ3166/src/libraries/SPI/src/AZ3166SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/SPI/src/AZ3166SPI.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/SPI/src/AZ3166SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/SPI/src/AZ3166SPI.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/examples/SensorStatus/.bin/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "sketch": "../SensorStatus.ino" 3 | } -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/examples/SensorStatus/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/examples/SensorStatus/.vscode/arduino.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/examples/SensorStatus/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/examples/SensorStatus/.vscode/settings.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/examples/SensorStatus/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/examples/SensorStatus/.vscode/tasks.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/examples/SensorStatus/SensorStatus.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/examples/SensorStatus/SensorStatus.ino -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/examples/SensorStatus/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/examples/SensorStatus/readme.md -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/library.properties -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/HTS221Sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/HTS221Sensor.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/HTS221Sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/HTS221Sensor.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/IoT_DevKit_HW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/IoT_DevKit_HW.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/IoT_DevKit_HW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/IoT_DevKit_HW.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/IrDASensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/IrDASensor.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/IrDASensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/IrDASensor.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/LIS2MDLSensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/LIS2MDLSensor.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/LIS2MDLSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/LIS2MDLSensor.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/LPS22HBSensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/LPS22HBSensor.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/LPS22HBSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/LPS22HBSensor.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/LSM6DSLSensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/LSM6DSLSensor.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/LSM6DSLSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/LSM6DSLSensor.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/RGB_LED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/RGB_LED.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/RGB_LED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/RGB_LED.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/ST_INTERFACES/BDCMotor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/ST_INTERFACES/BDCMotor.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/ST_INTERFACES/Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/ST_INTERFACES/Component.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/ST_INTERFACES/DevI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/ST_INTERFACES/DevI2C.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/ST_INTERFACES/GyroSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/ST_INTERFACES/GyroSensor.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/ST_INTERFACES/HumiditySensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/ST_INTERFACES/HumiditySensor.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/ST_INTERFACES/LightSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/ST_INTERFACES/LightSensor.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/ST_INTERFACES/MagneticSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/ST_INTERFACES/MagneticSensor.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/ST_INTERFACES/MotionSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/ST_INTERFACES/MotionSensor.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/ST_INTERFACES/Nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/ST_INTERFACES/Nfc.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/ST_INTERFACES/PressureSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/ST_INTERFACES/PressureSensor.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/ST_INTERFACES/RangeSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/ST_INTERFACES/RangeSensor.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/ST_INTERFACES/StepperMotor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/ST_INTERFACES/StepperMotor.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/ST_INTERFACES/TempSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/ST_INTERFACES/TempSensor.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/ST_INTERFACES/hum_temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/ST_INTERFACES/hum_temp.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/ST_INTERFACES/imu_6axes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/ST_INTERFACES/imu_6axes.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/ST_INTERFACES/magneto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/ST_INTERFACES/magneto.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/Sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/Sensor.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/utility/HTS221_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/utility/HTS221_driver.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/utility/HTS221_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/utility/HTS221_driver.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/utility/LPS22HB_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/utility/LPS22HB_driver.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/utility/LPS22HB_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/utility/LPS22HB_driver.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/utility/LSM6DSL_acc_gyro_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/utility/LSM6DSL_acc_gyro_driver.c -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/utility/LSM6DSL_acc_gyro_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/utility/LSM6DSL_acc_gyro_driver.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Sensors/src/utility/lis2mdl_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Sensors/src/utility/lis2mdl_driver.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/WebSocket/examples/WebSocketEcho/.bin/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "sketch": "../WebSocketEcho.ino" 3 | } -------------------------------------------------------------------------------- /AZ3166/src/libraries/WebSocket/examples/WebSocketEcho/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WebSocket/examples/WebSocketEcho/.vscode/arduino.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WebSocket/examples/WebSocketEcho/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WebSocket/examples/WebSocketEcho/.vscode/settings.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WebSocket/examples/WebSocketEcho/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WebSocket/examples/WebSocketEcho/.vscode/tasks.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WebSocket/examples/WebSocketEcho/WebSocketEcho.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WebSocket/examples/WebSocketEcho/WebSocketEcho.ino -------------------------------------------------------------------------------- /AZ3166/src/libraries/WebSocket/examples/WebSocketEcho/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WebSocket/examples/WebSocketEcho/readme.md -------------------------------------------------------------------------------- /AZ3166/src/libraries/WebSocket/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WebSocket/library.properties -------------------------------------------------------------------------------- /AZ3166/src/libraries/WebSocket/src/WebSocketClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WebSocket/src/WebSocketClient.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/WebSocket/src/WebSocketClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WebSocket/src/WebSocketClient.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/README.adoc -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/APmodeWiFiConfig/.bin/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/APmodeWiFiConfig/.bin/config.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/APmodeWiFiConfig/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/APmodeWiFiConfig/.vscode/arduino.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/APmodeWiFiConfig/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/APmodeWiFiConfig/.vscode/settings.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/APmodeWiFiConfig/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/APmodeWiFiConfig/.vscode/tasks.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/APmodeWiFiConfig/APmodeWiFiConfig.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/APmodeWiFiConfig/APmodeWiFiConfig.ino -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/ConnectWithWPA/.bin/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/ConnectWithWPA/.bin/config.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/ConnectWithWPA/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/ConnectWithWPA/.vscode/arduino.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/ConnectWithWPA/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/ConnectWithWPA/.vscode/settings.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/ConnectWithWPA/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/ConnectWithWPA/.vscode/tasks.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/ConnectWithWPA/ConnectWithWPA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/ConnectWithWPA/ConnectWithWPA.ino -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/ScanNetworks/.bin/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/ScanNetworks/.bin/config.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/ScanNetworks/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/ScanNetworks/.vscode/arduino.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/ScanNetworks/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/ScanNetworks/.vscode/settings.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/ScanNetworks/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/ScanNetworks/.vscode/tasks.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/ScanNetworks/ScanNetworks.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/ScanNetworks/ScanNetworks.ino -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/SimpleWebServerWiFi/.bin/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/SimpleWebServerWiFi/.bin/config.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/SimpleWebServerWiFi/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/SimpleWebServerWiFi/.vscode/tasks.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/WiFiUdpNtpClient/.bin/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/WiFiUdpNtpClient/.bin/config.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/WiFiUdpNtpClient/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/WiFiUdpNtpClient/.vscode/arduino.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/WiFiUdpNtpClient/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/WiFiUdpNtpClient/.vscode/settings.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/WiFiUdpNtpClient/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/WiFiUdpNtpClient/.vscode/tasks.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/WiFiUdpNtpClient/WiFiUdpNtpClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/WiFiUdpNtpClient/WiFiUdpNtpClient.ino -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/WiFiWebClient/.bin/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/WiFiWebClient/.bin/config.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/WiFiWebClient/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/WiFiWebClient/.vscode/arduino.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/WiFiWebClient/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/WiFiWebClient/.vscode/settings.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/WiFiWebClient/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/WiFiWebClient/.vscode/tasks.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/WiFiWebClient/WiFiWebClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/WiFiWebClient/WiFiWebClient.ino -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/WiFiWebServer/.bin/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/WiFiWebServer/.bin/config.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/WiFiWebServer/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/WiFiWebServer/.vscode/arduino.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/WiFiWebServer/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/WiFiWebServer/.vscode/settings.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/WiFiWebServer/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/WiFiWebServer/.vscode/tasks.json -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/examples/WiFiWebServer/WiFiWebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/examples/WiFiWebServer/WiFiWebServer.ino -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/keywords.txt -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/library.properties -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/src/AZ3166WiFi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/src/AZ3166WiFi.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/src/AZ3166WiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/src/AZ3166WiFi.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/src/AZ3166WiFiClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/src/AZ3166WiFiClient.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/src/AZ3166WiFiClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/src/AZ3166WiFiClient.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/src/AZ3166WiFiServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/src/AZ3166WiFiServer.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/src/AZ3166WiFiServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/src/AZ3166WiFiServer.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/src/AZ3166WiFiUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/src/AZ3166WiFiUdp.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/src/AZ3166WiFiUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/src/AZ3166WiFiUdp.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/src/utility/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/src/utility/debug.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/src/utility/wl_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/src/utility/wl_definitions.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/WiFi/src/utility/wl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/WiFi/src/utility/wl_types.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Wire/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Wire/Wire.cpp -------------------------------------------------------------------------------- /AZ3166/src/libraries/Wire/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Wire/Wire.h -------------------------------------------------------------------------------- /AZ3166/src/libraries/Wire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Wire/keywords.txt -------------------------------------------------------------------------------- /AZ3166/src/libraries/Wire/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/libraries/Wire/library.properties -------------------------------------------------------------------------------- /AZ3166/src/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/platform.txt -------------------------------------------------------------------------------- /AZ3166/src/programmers.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/EMW10xxInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/EMW10xxInterface.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/HAL_STSAFE-A100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/HAL_STSAFE-A100.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/TARGET_AZ3166/mico_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/TARGET_AZ3166/mico_board.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/TARGET_AZ3166/mico_board_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/TARGET_AZ3166/mico_board_conf.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/TARGET_AZ3166/wifi_nvram_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/TARGET_AZ3166/wifi_nvram_image.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/TARGET_STM/peripherals/platform_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/TARGET_STM/peripherals/platform_flash.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/emw10xx_lwip_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/emw10xx_lwip_stack.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/libraries/drivers/gpio_btn/gpio_btn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/libraries/drivers/gpio_btn/gpio_btn.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/libraries/drivers/spi_flash/spi_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/libraries/drivers/spi_flash/spi_flash.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/libraries/utilities/CheckSumUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/libraries/utilities/CheckSumUtils.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/libraries/utilities/LinkListUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/libraries/utilities/LinkListUtils.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/libraries/utilities/RingBufferUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/libraries/utilities/RingBufferUtils.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/libraries/utilities/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/libraries/utilities/StringUtils.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/libstsafe.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/libstsafe.a -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/libwlan/TARGET_EMW1062/libwlan.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/libwlan/TARGET_EMW1062/libwlan.a -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/lwip_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/lwip_lock.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/include/mico.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/include/mico.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/include/mico_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/include/mico_common.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/include/mico_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/include/mico_debug.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/include/mico_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/include/mico_platform.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/include/mico_rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/include/mico_rtos.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/include/mico_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/include/mico_socket.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/include/mico_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/include/mico_system.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/include/mico_wlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/include/mico_wlan.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/mxchip_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/mxchip_debug.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/net/LwIP/lwip-sys/arch/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/net/LwIP/lwip-sys/arch/cc.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/net/LwIP/lwip-sys/arch/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/net/LwIP/lwip-sys/arch/perf.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/net/LwIP/lwip-sys/arch/sys_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/net/LwIP/lwip-sys/arch/sys_arch.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/net/LwIP/lwip-sys/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/net/LwIP/lwip-sys/cpu.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/net/LwIP/lwip-sys/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/net/LwIP/lwip-sys/lwipopts.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/platform/EWARM/platform_toolchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/platform/EWARM/platform_toolchain.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/platform/GCC/platform_toolchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/platform/GCC/platform_toolchain.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/platform/RVMDK/platform_toolchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/platform/RVMDK/platform_toolchain.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/platform/include/platform_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/platform/include/platform_assert.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/platform/include/platform_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/platform/include/platform_logging.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/rtos/mico_rtos_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/rtos/mico_rtos_common.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/system/command_console/mico_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/system/command_console/mico_cli.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/system/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/system/system.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico/system/system_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico/system/system_internal.h -------------------------------------------------------------------------------- /AZ3166/src/system/az3166-driver/mico_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/az3166-driver/mico_config.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/azureiotcerts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/azureiotcerts.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/c-utility/pal/mbed_os5/refcount_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/c-utility/pal/mbed_os5/refcount_os.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/certs/certs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/certs/certs.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/deps/parson/parson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/deps/parson/parson.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/deps/uhttp/inc/azure_uhttp_c/uhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/deps/uhttp/inc/azure_uhttp_c/uhttp.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/deps/umock-c/inc/umock_c/umock_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/deps/umock-c/inc/umock_c/umock_c.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/deps/umock-c/inc/umock_c/umock_c_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/deps/umock-c/inc/umock_c/umock_c_prod.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/deps/umock-c/inc/umock_c/umock_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/deps/umock-c/inc/umock_c/umock_log.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/deps/umock-c/inc/umock_c/umockalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/deps/umock-c/inc/umock_c/umockalloc.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/deps/umock-c/inc/umock_c/umockcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/deps/umock-c/inc/umock_c/umockcall.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/deps/umock-c/inc/umock_c/umockstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/deps/umock-c/inc/umock_c/umockstring.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/deps/umock-c/inc/umock_c/umocktypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/deps/umock-c/inc/umock_c/umocktypes.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/deps/umock-c/inc/umock_c/umocktypes_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/deps/umock-c/inc/umock_c/umocktypes_c.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/iothub_client/inc/iothub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/iothub_client/inc/iothub.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/iothub_client/inc/iothub_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/iothub_client/inc/iothub_client.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/iothub_client/inc/iothub_client_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/iothub_client/inc/iothub_client_core.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/iothub_client/inc/iothub_client_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/iothub_client/inc/iothub_client_ll.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/iothub_client/inc/iothub_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/iothub_client/inc/iothub_message.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/iothub_client/inc/iothub_transport_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/iothub_client/inc/iothub_transport_ll.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/iothub_client/inc/iothubtransportmqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/iothub_client/inc/iothubtransportmqtt.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/umqtt/inc/azure_umqtt_c/mqtt_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/umqtt/inc/azure_umqtt_c/mqtt_client.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/umqtt/inc/azure_umqtt_c/mqtt_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/umqtt/inc/azure_umqtt_c/mqtt_codec.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/umqtt/inc/azure_umqtt_c/mqtt_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/umqtt/inc/azure_umqtt_c/mqtt_message.h -------------------------------------------------------------------------------- /AZ3166/src/system/azure-iot-sdk-c/umqtt/inc/azure_umqtt_c/mqttconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/azure-iot-sdk-c/umqtt/inc/azure_umqtt_c/mqttconst.h -------------------------------------------------------------------------------- /AZ3166/src/system/libdevkit-sdk-core-lib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/libdevkit-sdk-core-lib.a -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/arm_common_tables.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/arm_const_structs.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/arm_math.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/core_ca9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/core_ca9.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/core_caFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/core_caFunc.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/core_caInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/core_caInstr.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/core_ca_mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/core_ca_mmu.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/core_cm0.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/core_cm0plus.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/core_cm3.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/core_cm4.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/core_cm4_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/core_cm4_simd.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/core_cm7.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/core_cmFunc.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/core_cmInstr.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/core_cmSecureAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/core_cmSecureAccess.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/core_cmSimd.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/core_sc000.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/cmsis/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/cmsis/core_sc300.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/AnalogIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/AnalogIn.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/AnalogOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/AnalogOut.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/BusIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/BusIn.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/BusInOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/BusInOut.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/BusOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/BusOut.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/CAN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/CAN.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/DigitalIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/DigitalIn.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/DigitalInOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/DigitalInOut.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/DigitalOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/DigitalOut.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/DirHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/DirHandle.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/Ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/Ethernet.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/FileBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/FileBase.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/FileHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/FileHandle.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/FileLike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/FileLike.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/FilePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/FilePath.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/FileSystemLike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/FileSystemLike.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/FlashIAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/FlashIAP.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/I2C.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/I2CSlave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/I2CSlave.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/InterruptIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/InterruptIn.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/InterruptManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/InterruptManager.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/LocalFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/LocalFileSystem.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/LowPowerTicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/LowPowerTicker.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/LowPowerTimeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/LowPowerTimeout.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/LowPowerTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/LowPowerTimer.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/MbedStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/MbedStream.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/PortIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/PortIn.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/PortInOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/PortInOut.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/PortOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/PortOut.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/PwmOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/PwmOut.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/RawSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/RawSerial.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/SPI.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/SPISlave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/SPISlave.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/Serial.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/SerialBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/SerialBase.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/Ticker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/Ticker.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/Timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/Timeout.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/Timer.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/drivers/TimerEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/drivers/TimerEvent.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/events/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/events/Event.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/events/EventQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/events/EventQueue.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/events/equeue/equeue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/events/equeue/equeue.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/events/equeue/equeue_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/events/equeue/equeue_platform.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/events/mbed_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/events/mbed_events.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/filesystem/Dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/filesystem/Dir.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/filesystem/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/filesystem/File.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/filesystem/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/filesystem/FileSystem.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/filesystem/bd/BlockDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/filesystem/bd/BlockDevice.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/filesystem/bd/ChainingBlockDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/filesystem/bd/ChainingBlockDevice.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/filesystem/bd/HeapBlockDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/filesystem/bd/HeapBlockDevice.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/filesystem/bd/SlicingBlockDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/filesystem/bd/SlicingBlockDevice.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/filesystem/fat/ChaN/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/filesystem/fat/ChaN/diskio.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/filesystem/fat/ChaN/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/filesystem/fat/ChaN/ff.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/filesystem/fat/ChaN/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/filesystem/fat/ChaN/ffconf.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/filesystem/fat/ChaN/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/filesystem/fat/ChaN/integer.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/filesystem/fat/FATFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/filesystem/fat/FATFileSystem.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/filesystem/mbed_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/filesystem/mbed_filesystem.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/frameworks/unity/unity/unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/frameworks/unity/unity/unity.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/frameworks/unity/unity/unity_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/frameworks/unity/unity/unity_config.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/frameworks/utest/utest/unity_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/frameworks/utest/utest/unity_handler.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/frameworks/utest/utest/utest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/frameworks/utest/utest/utest.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/frameworks/utest/utest/utest_case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/frameworks/utest/utest/utest_case.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/frameworks/utest/utest/utest_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/frameworks/utest/utest/utest_harness.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/frameworks/utest/utest/utest_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/frameworks/utest/utest/utest_serial.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/frameworks/utest/utest/utest_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/frameworks/utest/utest/utest_shim.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/frameworks/utest/utest/utest_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/frameworks/utest/utest/utest_types.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/aes.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/aesni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/aesni.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/arc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/arc4.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/aria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/aria.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/asn1.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/asn1write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/asn1write.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/base64.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/bignum.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/blowfish.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/bn_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/bn_mul.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/camellia.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ccm.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/certs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/certs.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/chacha20.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/chachapoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/chachapoly.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/check_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/check_config.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/cipher.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/cipher_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/cipher_internal.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/cmac.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/compat-1.3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/compat-1.3.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/config.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ctr_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ctr_drbg.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/debug.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/des.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/dhm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/dhm.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ecdh.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ecdsa.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ecjpake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ecjpake.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ecp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ecp.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ecp_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ecp_internal.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/entropy.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/entropy_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/entropy_poll.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/error.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/gcm.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/havege.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/havege.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/hkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/hkdf.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/hmac_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/hmac_drbg.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/md.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/md2.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/md4.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/md5.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/md_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/md_internal.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/net.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/net_sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/net_sockets.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/nist_kw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/nist_kw.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/oid.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/padlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/padlock.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/pem.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/pk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/pk.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/pk_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/pk_internal.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/pkcs11.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/pkcs12.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/pkcs5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/pkcs5.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/platform.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/platform_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/platform_time.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/platform_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/platform_util.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/poly1305.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/psa_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/psa_util.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ripemd160.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/rsa.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/rsa_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/rsa_internal.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/sha1.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/sha256.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/sha512.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ssl.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ssl_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ssl_cache.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ssl_ciphersuites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ssl_ciphersuites.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ssl_cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ssl_cookie.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ssl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ssl_internal.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ssl_ticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/ssl_ticket.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/threading.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/timing.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/version.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/x509.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/x509_crl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/x509_crl.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/x509_crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/x509_crt.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/x509_csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/x509_csr.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/mbedtls/xtea.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/psa/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/psa/crypto.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/psa/crypto_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/psa/crypto_driver.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/psa/crypto_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/psa/crypto_extra.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/psa/crypto_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/psa/crypto_platform.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/inc/psa/crypto_sizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/inc/psa/crypto_sizes.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/platform/inc/platform_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/platform/inc/platform_alt.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/platform/inc/platform_mbed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/platform/inc/platform_mbed.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/targets/TARGET_STM/aes_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/targets/TARGET_STM/aes_alt.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/targets/TARGET_STM/md5_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/targets/TARGET_STM/md5_alt.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/mbedtls/targets/TARGET_STM/sha1_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/mbedtls/targets/TARGET_STM/sha1_alt.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/netsocket/CellularInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/netsocket/CellularInterface.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/netsocket/EthInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/netsocket/EthInterface.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/netsocket/MeshInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/netsocket/MeshInterface.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/netsocket/NetworkInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/netsocket/NetworkInterface.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/netsocket/NetworkStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/netsocket/NetworkStack.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/netsocket/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/netsocket/Socket.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/netsocket/SocketAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/netsocket/SocketAddress.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/netsocket/TCPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/netsocket/TCPServer.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/netsocket/TCPSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/netsocket/TCPSocket.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/netsocket/UDPSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/netsocket/UDPSocket.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/netsocket/WiFiAccessPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/netsocket/WiFiAccessPoint.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/netsocket/WiFiInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/netsocket/WiFiInterface.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/netsocket/emac_stack_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/netsocket/emac_stack_mem.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/netsocket/nsapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/netsocket/nsapi.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/netsocket/nsapi_dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/netsocket/nsapi_dns.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/features/netsocket/nsapi_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/features/netsocket/nsapi_types.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/analogin_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/analogin_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/analogout_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/analogout_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/buffer.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/can_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/can_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/can_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/can_helper.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/dma_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/dma_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/emac_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/emac_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/ethernet_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/ethernet_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/flash_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/flash_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/gpio_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/gpio_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/gpio_irq_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/gpio_irq_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/i2c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/i2c_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/lp_ticker_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/lp_ticker_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/pinmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/pinmap.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/port_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/port_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/pwmout_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/pwmout_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/rtc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/rtc_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/serial_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/serial_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/sleep_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/sleep_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/spi_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/spi_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/storage_abstraction/Driver_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/storage_abstraction/Driver_Common.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/storage_abstraction/Driver_Storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/storage_abstraction/Driver_Storage.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/ticker_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/ticker_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/trng_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/trng_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/hal/us_ticker_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/hal/us_ticker_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/mbed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/mbed.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/CThunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/CThunk.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/CallChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/CallChain.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/Callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/Callback.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/CircularBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/CircularBuffer.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/FunctionPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/FunctionPointer.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/PlatformMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/PlatformMutex.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/SingletonPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/SingletonPtr.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/Transaction.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/critical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/critical.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/mbed_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/mbed_application.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/mbed_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/mbed_assert.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/mbed_critical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/mbed_critical.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/mbed_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/mbed_debug.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/mbed_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/mbed_error.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/mbed_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/mbed_interface.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/mbed_mem_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/mbed_mem_trace.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/mbed_preprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/mbed_preprocessor.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/mbed_retarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/mbed_retarget.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/mbed_rtc_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/mbed_rtc_time.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/mbed_semihost_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/mbed_semihost_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/mbed_sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/mbed_sleep.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/mbed_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/mbed_stats.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/mbed_toolchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/mbed_toolchain.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/mbed_wait_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/mbed_wait_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/platform.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/rtc_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/rtc_time.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/semihost_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/semihost_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/sleep.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/toolchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/toolchain.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/platform/wait_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/platform/wait_api.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/Mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/Mail.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/MemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/MemoryPool.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/Mutex.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/Queue.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/RtosTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/RtosTimer.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/Semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/Semaphore.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/Thread.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtos.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtos_idle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtos_idle.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/RTX_CM_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/RTX_CM_lib.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/RTX_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/RTX_Config.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/cmsis_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/cmsis_os.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_Event.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_HAL_CM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_HAL_CM.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_List.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_Mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_Mailbox.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_MemBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_MemBox.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_Memory.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_Mutex.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_OsEventObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_OsEventObserver.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_Robin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_Robin.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_Semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_Semaphore.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_System.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_Task.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_Time.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_Timer.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_TypeDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/rtos/rtx/TARGET_CORTEX_M/rt_TypeDef.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/targets/TARGET_MXCHIP/TARGET_AZ3166/PinNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/targets/TARGET_MXCHIP/TARGET_AZ3166/PinNames.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/targets/TARGET_MXCHIP/TARGET_AZ3166/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/targets/TARGET_MXCHIP/TARGET_AZ3166/objects.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/targets/TARGET_MXCHIP/mbed_rtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/targets/TARGET_MXCHIP/mbed_rtx.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/targets/TARGET_STM/PeripheralPins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/targets/TARGET_STM/PeripheralPins.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/targets/TARGET_STM/PinNamesTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/targets/TARGET_STM/PinNamesTypes.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/targets/TARGET_STM/PortNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/targets/TARGET_STM/PortNames.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/targets/TARGET_STM/TARGET_STM32F4/can_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/targets/TARGET_STM/TARGET_STM32F4/can_device.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/targets/TARGET_STM/TARGET_STM32F4/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/targets/TARGET_STM/TARGET_STM32F4/device.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/targets/TARGET_STM/TARGET_STM32F4/i2c_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/targets/TARGET_STM/TARGET_STM32F4/i2c_device.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/targets/TARGET_STM/TARGET_STM32F4/pin_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/targets/TARGET_STM/TARGET_STM32F4/pin_device.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/targets/TARGET_STM/gpio_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/targets/TARGET_STM/gpio_object.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/targets/TARGET_STM/mbed_rtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/targets/TARGET_STM/mbed_rtx.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/targets/TARGET_STM/rtc_api_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/targets/TARGET_STM/rtc_api_hal.h -------------------------------------------------------------------------------- /AZ3166/src/system/mbed-os/targets/targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed-os/targets/targets.json -------------------------------------------------------------------------------- /AZ3166/src/system/mbed_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/mbed_config.h -------------------------------------------------------------------------------- /AZ3166/src/system/utilities/mbed_memory_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/system/utilities/mbed_memory_status.h -------------------------------------------------------------------------------- /AZ3166/src/variants/MXChip_AZ3166/linker_scripts/gcc/AZ3166.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/variants/MXChip_AZ3166/linker_scripts/gcc/AZ3166.ld -------------------------------------------------------------------------------- /AZ3166/src/variants/MXChip_AZ3166/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/variants/MXChip_AZ3166/pins_arduino.h -------------------------------------------------------------------------------- /AZ3166/src/variants/MXChip_AZ3166/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/src/variants/MXChip_AZ3166/variant.h -------------------------------------------------------------------------------- /AZ3166/tests/AzureIotHubExample/AzureIotHubExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/AzureIotHubExample/AzureIotHubExample.ino -------------------------------------------------------------------------------- /AZ3166/tests/AzureIotHubExample/azure_iot_hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/AzureIotHubExample/azure_iot_hub.h -------------------------------------------------------------------------------- /AZ3166/tests/AzureIotHubExample/iot_hub_mqtt_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/AzureIotHubExample/iot_hub_mqtt_example.cpp -------------------------------------------------------------------------------- /AZ3166/tests/AzureIotHubExample/iot_hub_mqtt_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/AzureIotHubExample/iot_hub_mqtt_example.h -------------------------------------------------------------------------------- /AZ3166/tests/AzureIotHubExample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/AzureIotHubExample/readme.md -------------------------------------------------------------------------------- /AZ3166/tests/BoardInit/BoardInit.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/BoardInit/BoardInit.ino -------------------------------------------------------------------------------- /AZ3166/tests/BoardInit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/BoardInit/readme.md -------------------------------------------------------------------------------- /AZ3166/tests/HttpTest/HttpTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/HttpTest/HttpTest.ino -------------------------------------------------------------------------------- /AZ3166/tests/SPITest/examples/DigitalPotControl/DigitalPotControl.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/SPITest/examples/DigitalPotControl/DigitalPotControl.ino -------------------------------------------------------------------------------- /AZ3166/tests/UnitTest/APMode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/UnitTest/APMode.ino -------------------------------------------------------------------------------- /AZ3166/tests/UnitTest/ArduinoLanguageTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/UnitTest/ArduinoLanguageTest.ino -------------------------------------------------------------------------------- /AZ3166/tests/UnitTest/AttchInterrupt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/UnitTest/AttchInterrupt.ino -------------------------------------------------------------------------------- /AZ3166/tests/UnitTest/MemoryStatusTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/UnitTest/MemoryStatusTest.ino -------------------------------------------------------------------------------- /AZ3166/tests/UnitTest/OledDisplay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/UnitTest/OledDisplay.ino -------------------------------------------------------------------------------- /AZ3166/tests/UnitTest/Sensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/UnitTest/Sensor.ino -------------------------------------------------------------------------------- /AZ3166/tests/UnitTest/UnitTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/UnitTest/UnitTest.ino -------------------------------------------------------------------------------- /AZ3166/tests/UnitTest/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/UnitTest/config.h -------------------------------------------------------------------------------- /AZ3166/tests/VoiceToTwitter/examples/VoiceToTwitter/.bin/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/VoiceToTwitter/examples/VoiceToTwitter/.bin/azuredeploy.json -------------------------------------------------------------------------------- /AZ3166/tests/VoiceToTwitter/examples/VoiceToTwitter/.bin/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/VoiceToTwitter/examples/VoiceToTwitter/.bin/config.json -------------------------------------------------------------------------------- /AZ3166/tests/VoiceToTwitter/examples/VoiceToTwitter/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/VoiceToTwitter/examples/VoiceToTwitter/.vscode/arduino.json -------------------------------------------------------------------------------- /AZ3166/tests/VoiceToTwitter/examples/VoiceToTwitter/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/VoiceToTwitter/examples/VoiceToTwitter/.vscode/settings.json -------------------------------------------------------------------------------- /AZ3166/tests/VoiceToTwitter/examples/VoiceToTwitter/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/VoiceToTwitter/examples/VoiceToTwitter/.vscode/tasks.json -------------------------------------------------------------------------------- /AZ3166/tests/VoiceToTwitter/examples/VoiceToTwitter/VoiceToTwitter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/VoiceToTwitter/examples/VoiceToTwitter/VoiceToTwitter.ino -------------------------------------------------------------------------------- /AZ3166/tests/VoiceToTwitter/examples/VoiceToTwitter/iot_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/VoiceToTwitter/examples/VoiceToTwitter/iot_client.cpp -------------------------------------------------------------------------------- /AZ3166/tests/VoiceToTwitter/examples/VoiceToTwitter/iot_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/VoiceToTwitter/examples/VoiceToTwitter/iot_client.h -------------------------------------------------------------------------------- /AZ3166/tests/VoiceToTwitter/examples/VoiceToTwitter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/VoiceToTwitter/examples/VoiceToTwitter/readme.md -------------------------------------------------------------------------------- /AZ3166/tests/VoiceToTwitter/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/VoiceToTwitter/keywords.txt -------------------------------------------------------------------------------- /AZ3166/tests/VoiceToTwitter/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/VoiceToTwitter/library.properties -------------------------------------------------------------------------------- /AZ3166/tests/WireTest/examples/SFRRanger_reader/SFRRanger_reader.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/WireTest/examples/SFRRanger_reader/SFRRanger_reader.pde -------------------------------------------------------------------------------- /AZ3166/tests/WireTest/examples/master_reader/master_reader.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/WireTest/examples/master_reader/master_reader.pde -------------------------------------------------------------------------------- /AZ3166/tests/WireTest/examples/master_writer/master_writer.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/WireTest/examples/master_writer/master_writer.pde -------------------------------------------------------------------------------- /AZ3166/tests/WireTest/examples/slave_receiver/slave_receiver.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/WireTest/examples/slave_receiver/slave_receiver.pde -------------------------------------------------------------------------------- /AZ3166/tests/WireTest/examples/slave_sender/slave_sender.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tests/WireTest/examples/slave_sender/slave_sender.pde -------------------------------------------------------------------------------- /AZ3166/tools/dice_device_enrollment/src/dice_device_enrollment.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tools/dice_device_enrollment/src/dice_device_enrollment.sln -------------------------------------------------------------------------------- /AZ3166/tools/dice_device_enrollment/src/dice_device_enrollment/DiceRIoT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tools/dice_device_enrollment/src/dice_device_enrollment/DiceRIoT.h -------------------------------------------------------------------------------- /AZ3166/tools/dice_device_enrollment/src/dice_device_enrollment/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tools/dice_device_enrollment/src/dice_device_enrollment/ReadMe.txt -------------------------------------------------------------------------------- /AZ3166/tools/dice_device_enrollment/src/dice_device_enrollment/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/AZ3166/tools/dice_device_enrollment/src/dice_device_enrollment/makefile -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/azure-pipelines-1.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /package_azureboard_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/devkit-sdk/HEAD/package_azureboard_index.json --------------------------------------------------------------------------------