├── .main-meta └── main.json ├── PICIoT.X ├── Makefile ├── main.c ├── mcc_generated_files │ ├── CryptoAuth_init.c │ ├── CryptoAuth_init.h │ ├── CryptoAuthenticationLibrary │ │ ├── CryptoAuth_example.c │ │ ├── CryptoAuth_example.h │ │ ├── MicrochipDisclaimer │ │ ├── atca_bool.h │ │ ├── atca_cfgs.c │ │ ├── atca_cfgs.h │ │ ├── atca_command.c │ │ ├── atca_command.h │ │ ├── atca_compiler.h │ │ ├── atca_device.c │ │ ├── atca_device.h │ │ ├── atca_devtypes.h │ │ ├── atca_execution.c │ │ ├── atca_execution.h │ │ ├── atca_iface.c │ │ ├── atca_iface.h │ │ ├── atca_status.h │ │ ├── atca_version.h │ │ ├── atcacert │ │ │ ├── atcacert.h │ │ │ ├── atcacert_client.c │ │ │ ├── atcacert_client.h │ │ │ ├── atcacert_date.c │ │ │ ├── atcacert_date.h │ │ │ ├── atcacert_def.c │ │ │ ├── atcacert_def.h │ │ │ ├── atcacert_der.c │ │ │ ├── atcacert_der.h │ │ │ ├── atcacert_host_hw.c │ │ │ ├── atcacert_host_hw.h │ │ │ ├── atcacert_host_sw.c │ │ │ ├── atcacert_host_sw.h │ │ │ ├── atcacert_pem.c │ │ │ └── atcacert_pem.h │ │ ├── basic │ │ │ ├── README.md │ │ │ ├── atca_basic.c │ │ │ ├── atca_basic.h │ │ │ ├── atca_basic_aes.c │ │ │ ├── atca_basic_aes_cbc.c │ │ │ ├── atca_basic_aes_cmac.c │ │ │ ├── atca_basic_aes_ctr.c │ │ │ ├── atca_basic_aes_gcm.c │ │ │ ├── atca_basic_aes_gcm.h │ │ │ ├── atca_basic_checkmac.c │ │ │ ├── atca_basic_counter.c │ │ │ ├── atca_basic_derivekey.c │ │ │ ├── atca_basic_ecdh.c │ │ │ ├── atca_basic_gendig.c │ │ │ ├── atca_basic_genkey.c │ │ │ ├── atca_basic_hmac.c │ │ │ ├── atca_basic_info.c │ │ │ ├── atca_basic_kdf.c │ │ │ ├── atca_basic_lock.c │ │ │ ├── atca_basic_mac.c │ │ │ ├── atca_basic_nonce.c │ │ │ ├── atca_basic_privwrite.c │ │ │ ├── atca_basic_random.c │ │ │ ├── atca_basic_read.c │ │ │ ├── atca_basic_secureboot.c │ │ │ ├── atca_basic_selftest.c │ │ │ ├── atca_basic_sha.c │ │ │ ├── atca_basic_sign.c │ │ │ ├── atca_basic_updateextra.c │ │ │ ├── atca_basic_verify.c │ │ │ ├── atca_basic_write.c │ │ │ ├── atca_helpers.c │ │ │ └── atca_helpers.h │ │ ├── crypto │ │ │ ├── README.md │ │ │ ├── atca_crypto_sw.h │ │ │ ├── atca_crypto_sw_ecdsa.c │ │ │ ├── atca_crypto_sw_ecdsa.h │ │ │ ├── atca_crypto_sw_rand.c │ │ │ ├── atca_crypto_sw_rand.h │ │ │ ├── atca_crypto_sw_sha1.c │ │ │ ├── atca_crypto_sw_sha1.h │ │ │ ├── atca_crypto_sw_sha2.c │ │ │ ├── atca_crypto_sw_sha2.h │ │ │ └── hashes │ │ │ │ ├── sha1_routines.c │ │ │ │ ├── sha1_routines.h │ │ │ │ ├── sha2_routines.c │ │ │ │ └── sha2_routines.h │ │ ├── cryptoauthlib.h │ │ ├── hal │ │ │ ├── atca_hal.c │ │ │ ├── atca_hal.h │ │ │ ├── atca_i2c_hal.c │ │ │ ├── atca_i2c_hal.h │ │ │ ├── atca_start_config.h │ │ │ ├── atca_start_iface.h │ │ │ └── hal_i2c_timer.c │ │ ├── host │ │ │ ├── atca_host.c │ │ │ └── atca_host.h │ │ └── jwt │ │ │ ├── atca_jwt.c │ │ │ └── atca_jwt.h │ ├── adc1.c │ ├── adc1.h │ ├── application_manager.c │ ├── application_manager.h │ ├── atca_compiler.h │ ├── atca_version.h │ ├── banner.h │ ├── cli │ │ ├── cli.c │ │ └── cli.h │ ├── clock.c │ ├── clock.h │ ├── cloud │ │ ├── aws_cloud_service.c │ │ ├── cloud_interface.h │ │ ├── cloud_service.c │ │ ├── cloud_service.h │ │ ├── crypto_client │ │ │ ├── crypto_client.c │ │ │ └── crypto_client.h │ │ ├── mqtt_service.c │ │ ├── mqtt_service.h │ │ ├── wifi_service.c │ │ └── wifi_service.h │ ├── config │ │ ├── IoT_Sensor_Node_config.h │ │ ├── cloud_config.h │ │ ├── conf_winc.h │ │ └── mqtt_config.h │ ├── credentials_storage │ │ ├── credentials_storage.c │ │ └── credentials_storage.h │ ├── cryptoauthlib_config.h │ ├── debug_print.c │ ├── debug_print.h │ ├── delay.c │ ├── delay.h │ ├── drivers │ │ ├── i2c_master.c │ │ ├── i2c_master.h │ │ ├── i2c_simple_master.c │ │ ├── i2c_simple_master.h │ │ ├── i2c_types.c │ │ ├── i2c_types.h │ │ ├── spi_master.c │ │ ├── spi_master.h │ │ ├── timeout.c │ │ ├── timeout.h │ │ ├── uart.c │ │ └── uart.h │ ├── i2c2_driver.c │ ├── i2c2_driver.h │ ├── interrupt_manager.c │ ├── interrupt_manager.h │ ├── led.c │ ├── led.h │ ├── mcc.c │ ├── mcc.h │ ├── mqtt │ │ ├── mqtt_comm_bsd │ │ │ ├── mqtt_comm_layer.c │ │ │ └── mqtt_comm_layer.h │ │ ├── mqtt_comm_tcpipLite │ │ │ ├── mqtt_comm_layer.c │ │ │ ├── mqtt_comm_layer.h │ │ │ ├── mqtt_connection_handler.c │ │ │ └── mqtt_connection_handler.h │ │ ├── mqtt_core │ │ │ ├── mqtt_core.c │ │ │ └── mqtt_core.h │ │ ├── mqtt_exchange_buffer │ │ │ ├── mqtt_exchange_buffer.c │ │ │ └── mqtt_exchange_buffer.h │ │ ├── mqtt_packetTransfer_interface.c │ │ ├── mqtt_packetTransfer_interface.h │ │ ├── mqtt_winc_adapter.c │ │ ├── mqtt_winc_adapter.h │ │ └── nvmem_abstractionLayer │ │ │ ├── nvmem_hwLibInteraction.c │ │ │ └── nvmem_hwLibInteraction.h │ ├── pin_manager.c │ ├── pin_manager.h │ ├── sensors_handling.c │ ├── sensors_handling.h │ ├── spi1_driver.c │ ├── spi1_driver.h │ ├── spi1_types.h │ ├── system.c │ ├── system.h │ ├── time_service.c │ ├── time_service.h │ ├── tmr1.c │ ├── tmr1.h │ ├── tmr2.c │ ├── tmr2.h │ ├── traps.c │ ├── traps.h │ ├── uart1.c │ ├── uart1.h │ └── winc │ │ ├── common │ │ ├── ecc_types.h │ │ ├── winc_1500_3A0_registers.h │ │ ├── winc_debug.h │ │ ├── winc_defines.h │ │ └── winc_registers.h │ │ ├── driver │ │ ├── winc_adapter.c │ │ ├── winc_adapter.h │ │ ├── winc_asic.c │ │ ├── winc_asic.h │ │ ├── winc_drv.c │ │ ├── winc_drv.h │ │ ├── winc_hif.c │ │ ├── winc_hif.h │ │ ├── winc_spi.c │ │ └── winc_spi.h │ │ ├── include │ │ ├── conf_winc_defaults.h │ │ ├── winc.h │ │ └── winc_legacy.h │ │ ├── m2m │ │ ├── m2m_crypto.c │ │ ├── m2m_crypto.h │ │ ├── m2m_fwinfo.c │ │ ├── m2m_fwinfo.h │ │ ├── m2m_ota.c │ │ ├── m2m_ota.h │ │ ├── m2m_periph.c │ │ ├── m2m_periph.h │ │ ├── m2m_socket_host_if.h │ │ ├── m2m_ssl.c │ │ ├── m2m_ssl.h │ │ ├── m2m_types.h │ │ ├── m2m_wifi.c │ │ └── m2m_wifi.h │ │ ├── socket │ │ ├── socket.c │ │ └── socket.h │ │ └── spi_flash │ │ ├── flexible_flash.c │ │ ├── flexible_flash.h │ │ ├── spi_flash.c │ │ ├── spi_flash.h │ │ └── spi_flash_map.h └── nbproject │ ├── Makefile-default.mk │ ├── Makefile-genesis.properties │ ├── Makefile-impl.mk │ ├── Makefile-local-default.mk │ ├── Makefile-variables.mk │ ├── Package-default.bash │ ├── configurations.xml │ ├── private │ └── configurations.xml │ └── project.xml ├── README.md └── images ├── AWS_ShadowUserStory.png ├── Actuators.png ├── DeltaToggle.png ├── DeviceStartUpConsole.png ├── PublishDataToAWS.png ├── SequenceOfEvents.png ├── awsConnection.png ├── awsControl.png ├── awsGraphs.png ├── awsLearnMore.png ├── awsNext.png ├── awsSensors.png ├── boardPIC.png ├── eccDevice.png ├── picawsLeverage.png ├── picboardCallout.png ├── serialWiFi.png ├── softApCredentials.png ├── wifiCredentialsWeb.png ├── wifiNotepad.png └── wincModule.png /.main-meta/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/.main-meta/main.json -------------------------------------------------------------------------------- /PICIoT.X/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/Makefile -------------------------------------------------------------------------------- /PICIoT.X/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/main.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuth_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuth_init.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuth_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuth_init.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/CryptoAuth_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/CryptoAuth_example.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/CryptoAuth_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/CryptoAuth_example.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/MicrochipDisclaimer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/MicrochipDisclaimer -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_bool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_bool.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_cfgs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_cfgs.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_cfgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_cfgs.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_command.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_command.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_compiler.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_device.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_device.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_devtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_devtypes.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_execution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_execution.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_execution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_execution.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_iface.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_iface.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_status.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atca_version.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_client.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_client.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_date.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_date.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_def.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_def.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_der.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_der.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_der.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_der.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_host_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_host_hw.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_host_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_host_hw.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_host_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_host_sw.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_host_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_host_sw.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_pem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_pem.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/atcacert/atcacert_pem.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/README.md -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_aes.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_aes_cbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_aes_cbc.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_aes_cmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_aes_cmac.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_aes_ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_aes_ctr.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_aes_gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_aes_gcm.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_aes_gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_aes_gcm.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_checkmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_checkmac.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_counter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_counter.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_derivekey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_derivekey.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_ecdh.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_gendig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_gendig.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_genkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_genkey.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_hmac.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_info.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_kdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_kdf.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_lock.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_mac.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_nonce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_nonce.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_privwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_privwrite.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_random.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_read.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_secureboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_secureboot.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_selftest.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_sha.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_sign.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_updateextra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_updateextra.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_verify.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_basic_write.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_helpers.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/basic/atca_helpers.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/README.md -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/atca_crypto_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/atca_crypto_sw.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/atca_crypto_sw_ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/atca_crypto_sw_ecdsa.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/atca_crypto_sw_ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/atca_crypto_sw_ecdsa.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/atca_crypto_sw_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/atca_crypto_sw_rand.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/atca_crypto_sw_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/atca_crypto_sw_rand.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/atca_crypto_sw_sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/atca_crypto_sw_sha1.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/atca_crypto_sw_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/atca_crypto_sw_sha1.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/atca_crypto_sw_sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/atca_crypto_sw_sha2.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/atca_crypto_sw_sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/atca_crypto_sw_sha2.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/hashes/sha1_routines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/hashes/sha1_routines.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/hashes/sha1_routines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/hashes/sha1_routines.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/hashes/sha2_routines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/hashes/sha2_routines.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/hashes/sha2_routines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/crypto/hashes/sha2_routines.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/cryptoauthlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/cryptoauthlib.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/hal/atca_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/hal/atca_hal.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/hal/atca_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/hal/atca_hal.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/hal/atca_i2c_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/hal/atca_i2c_hal.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/hal/atca_i2c_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/hal/atca_i2c_hal.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/hal/atca_start_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/hal/atca_start_config.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/hal/atca_start_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/hal/atca_start_iface.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/hal/hal_i2c_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/hal/hal_i2c_timer.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/host/atca_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/host/atca_host.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/host/atca_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/host/atca_host.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/jwt/atca_jwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/jwt/atca_jwt.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/jwt/atca_jwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/CryptoAuthenticationLibrary/jwt/atca_jwt.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/adc1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/adc1.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/adc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/adc1.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/application_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/application_manager.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/application_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/application_manager.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/atca_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/atca_compiler.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/atca_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/atca_version.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/banner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/banner.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/cli/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/cli/cli.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/cli/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/cli/cli.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/clock.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/clock.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/cloud/aws_cloud_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/cloud/aws_cloud_service.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/cloud/cloud_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/cloud/cloud_interface.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/cloud/cloud_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/cloud/cloud_service.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/cloud/cloud_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/cloud/cloud_service.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/cloud/crypto_client/crypto_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/cloud/crypto_client/crypto_client.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/cloud/crypto_client/crypto_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/cloud/crypto_client/crypto_client.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/cloud/mqtt_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/cloud/mqtt_service.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/cloud/mqtt_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/cloud/mqtt_service.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/cloud/wifi_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/cloud/wifi_service.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/cloud/wifi_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/cloud/wifi_service.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/config/IoT_Sensor_Node_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/config/IoT_Sensor_Node_config.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/config/cloud_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/config/cloud_config.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/config/conf_winc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/config/conf_winc.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/config/mqtt_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/config/mqtt_config.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/credentials_storage/credentials_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/credentials_storage/credentials_storage.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/credentials_storage/credentials_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/credentials_storage/credentials_storage.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/cryptoauthlib_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/cryptoauthlib_config.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/debug_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/debug_print.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/debug_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/debug_print.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/delay.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/delay.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/drivers/i2c_master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/drivers/i2c_master.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/drivers/i2c_master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/drivers/i2c_master.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/drivers/i2c_simple_master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/drivers/i2c_simple_master.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/drivers/i2c_simple_master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/drivers/i2c_simple_master.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/drivers/i2c_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/drivers/i2c_types.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/drivers/i2c_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/drivers/i2c_types.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/drivers/spi_master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/drivers/spi_master.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/drivers/spi_master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/drivers/spi_master.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/drivers/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/drivers/timeout.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/drivers/timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/drivers/timeout.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/drivers/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/drivers/uart.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/drivers/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/drivers/uart.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/i2c2_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/i2c2_driver.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/i2c2_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/i2c2_driver.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/interrupt_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/interrupt_manager.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/interrupt_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/interrupt_manager.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/led.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/led.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/mcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/mcc.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/mcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/mcc.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/mqtt/mqtt_comm_bsd/mqtt_comm_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/mqtt/mqtt_comm_bsd/mqtt_comm_layer.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/mqtt/mqtt_comm_bsd/mqtt_comm_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/mqtt/mqtt_comm_bsd/mqtt_comm_layer.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/mqtt/mqtt_comm_tcpipLite/mqtt_comm_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/mqtt/mqtt_comm_tcpipLite/mqtt_comm_layer.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/mqtt/mqtt_comm_tcpipLite/mqtt_comm_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/mqtt/mqtt_comm_tcpipLite/mqtt_comm_layer.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/mqtt/mqtt_comm_tcpipLite/mqtt_connection_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/mqtt/mqtt_comm_tcpipLite/mqtt_connection_handler.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/mqtt/mqtt_comm_tcpipLite/mqtt_connection_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/mqtt/mqtt_comm_tcpipLite/mqtt_connection_handler.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/mqtt/mqtt_core/mqtt_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/mqtt/mqtt_core/mqtt_core.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/mqtt/mqtt_core/mqtt_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/mqtt/mqtt_core/mqtt_core.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/mqtt/mqtt_exchange_buffer/mqtt_exchange_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/mqtt/mqtt_exchange_buffer/mqtt_exchange_buffer.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/mqtt/mqtt_exchange_buffer/mqtt_exchange_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/mqtt/mqtt_exchange_buffer/mqtt_exchange_buffer.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/mqtt/mqtt_packetTransfer_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/mqtt/mqtt_packetTransfer_interface.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/mqtt/mqtt_packetTransfer_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/mqtt/mqtt_packetTransfer_interface.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/mqtt/mqtt_winc_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/mqtt/mqtt_winc_adapter.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/mqtt/mqtt_winc_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/mqtt/mqtt_winc_adapter.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/mqtt/nvmem_abstractionLayer/nvmem_hwLibInteraction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/mqtt/nvmem_abstractionLayer/nvmem_hwLibInteraction.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/mqtt/nvmem_abstractionLayer/nvmem_hwLibInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/mqtt/nvmem_abstractionLayer/nvmem_hwLibInteraction.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/pin_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/pin_manager.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/pin_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/pin_manager.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/sensors_handling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/sensors_handling.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/sensors_handling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/sensors_handling.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/spi1_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/spi1_driver.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/spi1_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/spi1_driver.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/spi1_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/spi1_types.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/system.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/system.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/time_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/time_service.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/time_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/time_service.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/tmr1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/tmr1.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/tmr1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/tmr1.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/tmr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/tmr2.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/tmr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/tmr2.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/traps.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/traps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/traps.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/uart1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/uart1.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/uart1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/uart1.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/common/ecc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/common/ecc_types.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/common/winc_1500_3A0_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/common/winc_1500_3A0_registers.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/common/winc_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/common/winc_debug.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/common/winc_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/common/winc_defines.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/common/winc_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/common/winc_registers.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/driver/winc_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/driver/winc_adapter.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/driver/winc_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/driver/winc_adapter.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/driver/winc_asic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/driver/winc_asic.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/driver/winc_asic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/driver/winc_asic.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/driver/winc_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/driver/winc_drv.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/driver/winc_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/driver/winc_drv.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/driver/winc_hif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/driver/winc_hif.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/driver/winc_hif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/driver/winc_hif.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/driver/winc_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/driver/winc_spi.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/driver/winc_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/driver/winc_spi.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/include/conf_winc_defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/include/conf_winc_defaults.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/include/winc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/include/winc.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/include/winc_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/include/winc_legacy.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/m2m/m2m_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/m2m/m2m_crypto.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/m2m/m2m_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/m2m/m2m_crypto.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/m2m/m2m_fwinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/m2m/m2m_fwinfo.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/m2m/m2m_fwinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/m2m/m2m_fwinfo.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/m2m/m2m_ota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/m2m/m2m_ota.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/m2m/m2m_ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/m2m/m2m_ota.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/m2m/m2m_periph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/m2m/m2m_periph.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/m2m/m2m_periph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/m2m/m2m_periph.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/m2m/m2m_socket_host_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/m2m/m2m_socket_host_if.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/m2m/m2m_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/m2m/m2m_ssl.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/m2m/m2m_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/m2m/m2m_ssl.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/m2m/m2m_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/m2m/m2m_types.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/m2m/m2m_wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/m2m/m2m_wifi.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/m2m/m2m_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/m2m/m2m_wifi.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/socket/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/socket/socket.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/socket/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/socket/socket.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/spi_flash/flexible_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/spi_flash/flexible_flash.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/spi_flash/flexible_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/spi_flash/flexible_flash.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/spi_flash/spi_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/spi_flash/spi_flash.c -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/spi_flash/spi_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/spi_flash/spi_flash.h -------------------------------------------------------------------------------- /PICIoT.X/mcc_generated_files/winc/spi_flash/spi_flash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/mcc_generated_files/winc/spi_flash/spi_flash_map.h -------------------------------------------------------------------------------- /PICIoT.X/nbproject/Makefile-default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/nbproject/Makefile-default.mk -------------------------------------------------------------------------------- /PICIoT.X/nbproject/Makefile-genesis.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/nbproject/Makefile-genesis.properties -------------------------------------------------------------------------------- /PICIoT.X/nbproject/Makefile-impl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/nbproject/Makefile-impl.mk -------------------------------------------------------------------------------- /PICIoT.X/nbproject/Makefile-local-default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/nbproject/Makefile-local-default.mk -------------------------------------------------------------------------------- /PICIoT.X/nbproject/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/nbproject/Makefile-variables.mk -------------------------------------------------------------------------------- /PICIoT.X/nbproject/Package-default.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/nbproject/Package-default.bash -------------------------------------------------------------------------------- /PICIoT.X/nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/nbproject/configurations.xml -------------------------------------------------------------------------------- /PICIoT.X/nbproject/private/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/nbproject/private/configurations.xml -------------------------------------------------------------------------------- /PICIoT.X/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/PICIoT.X/nbproject/project.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/README.md -------------------------------------------------------------------------------- /images/AWS_ShadowUserStory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/AWS_ShadowUserStory.png -------------------------------------------------------------------------------- /images/Actuators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/Actuators.png -------------------------------------------------------------------------------- /images/DeltaToggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/DeltaToggle.png -------------------------------------------------------------------------------- /images/DeviceStartUpConsole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/DeviceStartUpConsole.png -------------------------------------------------------------------------------- /images/PublishDataToAWS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/PublishDataToAWS.png -------------------------------------------------------------------------------- /images/SequenceOfEvents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/SequenceOfEvents.png -------------------------------------------------------------------------------- /images/awsConnection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/awsConnection.png -------------------------------------------------------------------------------- /images/awsControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/awsControl.png -------------------------------------------------------------------------------- /images/awsGraphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/awsGraphs.png -------------------------------------------------------------------------------- /images/awsLearnMore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/awsLearnMore.png -------------------------------------------------------------------------------- /images/awsNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/awsNext.png -------------------------------------------------------------------------------- /images/awsSensors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/awsSensors.png -------------------------------------------------------------------------------- /images/boardPIC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/boardPIC.png -------------------------------------------------------------------------------- /images/eccDevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/eccDevice.png -------------------------------------------------------------------------------- /images/picawsLeverage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/picawsLeverage.png -------------------------------------------------------------------------------- /images/picboardCallout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/picboardCallout.png -------------------------------------------------------------------------------- /images/serialWiFi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/serialWiFi.png -------------------------------------------------------------------------------- /images/softApCredentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/softApCredentials.png -------------------------------------------------------------------------------- /images/wifiCredentialsWeb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/wifiCredentialsWeb.png -------------------------------------------------------------------------------- /images/wifiNotepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/wifiNotepad.png -------------------------------------------------------------------------------- /images/wincModule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microchip-pic-avr-solutions/pic-iot-aws-sensor-node/HEAD/images/wincModule.png --------------------------------------------------------------------------------