├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── CHANGELOG ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── doc ├── APIs.md ├── Commercialization_Guide.md ├── SAMSUNGCLA.docx ├── STDK_Config.md ├── STDK_Key_Generation.md ├── STDK_QR_Generation.md ├── getting_started.md ├── porting_guide.md └── res │ ├── add-product-info.gif │ ├── add_device1.png │ ├── add_device2.png │ ├── add_device3.png │ ├── adding_test_device2.png │ ├── create-device-onboarding.gif │ ├── create-device-profile.gif │ ├── create-project.gif │ ├── deploy_to_test_switch.png │ ├── developer_mode.png │ ├── device_control1.png │ ├── downloading_onboarding_config_file_switch.png │ ├── register-test-device.gif │ ├── sign_in.png │ ├── st_device_sdk_arch.jpg │ └── st_logo.png ├── example ├── esp32 │ ├── CMakeLists.txt │ ├── README.md │ ├── custom_partitions.csv │ ├── main │ │ ├── CMakeLists.txt │ │ ├── device_control.c │ │ ├── device_control.h │ │ ├── device_info.json │ │ ├── idf_component.yml │ │ ├── iot_cli_cmd.c │ │ ├── iot_cli_cmd.h │ │ ├── iot_uart_cli.c │ │ ├── iot_uart_cli.h │ │ ├── main.c │ │ ├── onboarding_config.json │ │ └── stdkconfig.cmake │ ├── sdkconfig │ ├── sdkconfig.esp32c3 │ └── sdkconfig.esp32s3 ├── posix │ ├── CMakeLists.txt │ ├── README.md │ ├── example.c │ └── stdkconfig.cmake └── raspberry │ ├── CMakeLists.txt │ ├── README.md │ ├── device_info.json │ ├── example.c │ ├── onboarding_config.json │ ├── patches │ └── bluez │ │ ├── 0001-add-manufacturer-data-for-scan-response.patch │ │ ├── 0002-add-documentation-for-property-ManufacturerDataSR.patch │ │ └── 0003-add-manufacturer-data-at-the-end.patch │ └── stdkconfig.cmake ├── make └── common.mk ├── src ├── CMakeLists.txt ├── Kconfig ├── component.cmake ├── component.mk ├── deps │ ├── cbor │ │ └── tinycbor │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── VERSION │ │ │ └── src │ │ │ ├── cbor.h │ │ │ ├── cborencoder.c │ │ │ ├── cborencoder_close_container_checked.c │ │ │ ├── cborerrorstrings.c │ │ │ ├── cborinternal_p.h │ │ │ ├── cborjson.h │ │ │ ├── cborparser.c │ │ │ ├── cborparser_dup_string.c │ │ │ ├── cbortojson.c │ │ │ ├── cborvalidation.c │ │ │ ├── compilersupport_p.h │ │ │ ├── tinycbor-version.h │ │ │ └── utf8_p.h │ ├── curl │ │ ├── Makefile │ │ └── port │ │ │ └── include │ │ │ └── curl_config.h │ ├── json │ │ └── Makefile │ ├── libsodium │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── port │ │ │ └── include │ │ │ └── sodium │ │ │ └── version.h │ └── mbedtls │ │ ├── Makefile │ │ └── port │ │ └── posix │ │ └── include │ │ └── mbedtls │ │ └── posix_config.h ├── easysetup │ ├── CMakeLists.txt │ ├── ble │ │ ├── easysetup_ble.h │ │ ├── iot_easysetup_ble.c │ │ ├── iot_easysetup_ble_ecdh.c │ │ ├── iot_easysetup_ble_msg.c │ │ ├── iot_easysetup_ble_task.c │ │ └── iot_easysetup_d2d_ble.c │ ├── discovery │ │ ├── advertiser │ │ │ └── iot_easysetup_discovery_advertiser.c │ │ └── ssid │ │ │ └── iot_easysetup_discovery_ssid.c │ ├── http │ │ ├── easysetup_http.h │ │ ├── iot_easysetup_http.c │ │ ├── iot_easysetup_http_parser.c │ │ ├── tcp │ │ │ ├── iot_easysetup_d2d_tcp.c │ │ │ └── iot_easysetup_httpd.c │ │ └── tls │ │ │ ├── iot_easysetup_d2d_tls.c │ │ │ └── iot_easysetup_http_tls.c │ └── iot_easysetup_st_mqtt.c ├── include │ ├── bsp │ │ ├── bk7236 │ │ │ └── iot_bsp_custom.h │ │ ├── bl602 │ │ │ └── iot_bsp_custom.h │ │ ├── esp32 │ │ │ └── iot_bsp_custom.h │ │ ├── iot_bsp_ble.h │ │ ├── iot_bsp_debug.h │ │ ├── iot_bsp_fs.h │ │ ├── iot_bsp_nv_data.h │ │ ├── iot_bsp_random.h │ │ ├── iot_bsp_system.h │ │ ├── iot_bsp_wifi.h │ │ ├── posix │ │ │ └── iot_bsp_custom.h │ │ └── raspberry │ │ │ └── iot_bsp_custom.h │ ├── caps │ │ ├── iot_caps_helper.h │ │ ├── iot_caps_helper_accelerationSensor.h │ │ ├── iot_caps_helper_activityLightingMode.h │ │ ├── iot_caps_helper_airQualitySensor.h │ │ ├── iot_caps_helper_alarm.h │ │ ├── iot_caps_helper_antiSnoringPillow.h │ │ ├── iot_caps_helper_audioMute.h │ │ ├── iot_caps_helper_audioVolume.h │ │ ├── iot_caps_helper_battery.h │ │ ├── iot_caps_helper_bodyMassIndexMeasurement.h │ │ ├── iot_caps_helper_bodyWeightMeasurement.h │ │ ├── iot_caps_helper_button.h │ │ ├── iot_caps_helper_carbonDioxideHealthConcern.h │ │ ├── iot_caps_helper_carbonDioxideMeasurement.h │ │ ├── iot_caps_helper_carbonMonoxideDetector.h │ │ ├── iot_caps_helper_carbonMonoxideMeasurement.h │ │ ├── iot_caps_helper_colorControl.h │ │ ├── iot_caps_helper_colorTemperature.h │ │ ├── iot_caps_helper_contactSensor.h │ │ ├── iot_caps_helper_dishwasherOperatingState.h │ │ ├── iot_caps_helper_doorControl.h │ │ ├── iot_caps_helper_dryerOperatingState.h │ │ ├── iot_caps_helper_dustHealthConcern.h │ │ ├── iot_caps_helper_dustSensor.h │ │ ├── iot_caps_helper_energyMeter.h │ │ ├── iot_caps_helper_equivalentCarbonDioxideMeasurement.h │ │ ├── iot_caps_helper_execute.h │ │ ├── iot_caps_helper_fanOscillationMode.h │ │ ├── iot_caps_helper_fanSpeed.h │ │ ├── iot_caps_helper_filterStatus.h │ │ ├── iot_caps_helper_fineDustHealthConcern.h │ │ ├── iot_caps_helper_fineDustSensor.h │ │ ├── iot_caps_helper_firmwareUpdate.h │ │ ├── iot_caps_helper_formaldehydeMeasurement.h │ │ ├── iot_caps_helper_garageDoorControl.h │ │ ├── iot_caps_helper_gasMeter.h │ │ ├── iot_caps_helper_illuminanceMeasurement.h │ │ ├── iot_caps_helper_imageCapture.h │ │ ├── iot_caps_helper_lock.h │ │ ├── iot_caps_helper_mediaInputSource.h │ │ ├── iot_caps_helper_mediaPlayback.h │ │ ├── iot_caps_helper_mediaPlaybackRepeat.h │ │ ├── iot_caps_helper_mediaPlaybackShuffle.h │ │ ├── iot_caps_helper_mode.h │ │ ├── iot_caps_helper_moldHealthConcern.h │ │ ├── iot_caps_helper_momentary.h │ │ ├── iot_caps_helper_motionSensor.h │ │ ├── iot_caps_helper_objectDetection.h │ │ ├── iot_caps_helper_odorSensor.h │ │ ├── iot_caps_helper_operatingState.h │ │ ├── iot_caps_helper_ovenOperatingState.h │ │ ├── iot_caps_helper_ovenSetpoint.h │ │ ├── iot_caps_helper_pHMeasurement.h │ │ ├── iot_caps_helper_panicAlarm.h │ │ ├── iot_caps_helper_powerMeter.h │ │ ├── iot_caps_helper_powerSource.h │ │ ├── iot_caps_helper_presenceSensor.h │ │ ├── iot_caps_helper_radonHealthConcern.h │ │ ├── iot_caps_helper_rapidCooling.h │ │ ├── iot_caps_helper_refresh.h │ │ ├── iot_caps_helper_relativeHumidityMeasurement.h │ │ ├── iot_caps_helper_remoteControlStatus.h │ │ ├── iot_caps_helper_robotCleanerMovement.h │ │ ├── iot_caps_helper_robotCleanerTurboMode.h │ │ ├── iot_caps_helper_samsungTV.h │ │ ├── iot_caps_helper_securitySystem.h │ │ ├── iot_caps_helper_signalStrength.h │ │ ├── iot_caps_helper_sleepSensor.h │ │ ├── iot_caps_helper_smokeDetector.h │ │ ├── iot_caps_helper_soundPressureLevel.h │ │ ├── iot_caps_helper_soundSensor.h │ │ ├── iot_caps_helper_switch.h │ │ ├── iot_caps_helper_switchLevel.h │ │ ├── iot_caps_helper_tamperAlert.h │ │ ├── iot_caps_helper_temperatureAlarm.h │ │ ├── iot_caps_helper_temperatureMeasurement.h │ │ ├── iot_caps_helper_thermostatCoolingSetpoint.h │ │ ├── iot_caps_helper_thermostatFanMode.h │ │ ├── iot_caps_helper_thermostatHeatingSetpoint.h │ │ ├── iot_caps_helper_thermostatMode.h │ │ ├── iot_caps_helper_thermostatOperatingState.h │ │ ├── iot_caps_helper_thermostatSetpoint.h │ │ ├── iot_caps_helper_threeAxis.h │ │ ├── iot_caps_helper_timedSession.h │ │ ├── iot_caps_helper_tone.h │ │ ├── iot_caps_helper_tvocHealthConcern.h │ │ ├── iot_caps_helper_tvocMeasurement.h │ │ ├── iot_caps_helper_ultravioletIndex.h │ │ ├── iot_caps_helper_valve.h │ │ ├── iot_caps_helper_veryFineDustHealthConcern.h │ │ ├── iot_caps_helper_veryFineDustSensor.h │ │ ├── iot_caps_helper_voltageMeasurement.h │ │ ├── iot_caps_helper_waterSensor.h │ │ └── iot_caps_helper_windowShade.h │ ├── certs │ │ └── root_ca.h │ ├── external │ │ └── JSON.h │ ├── iot_capability.h │ ├── iot_common.h │ ├── iot_debug.h │ ├── iot_dump_log.h │ ├── iot_easysetup.h │ ├── iot_error.h │ ├── iot_internal.h │ ├── iot_log_file.h │ ├── iot_main.h │ ├── iot_mqtt.h │ ├── iot_nv_data.h │ ├── iot_serialize.h │ ├── iot_util.h │ ├── iot_uuid.h │ ├── iot_wt.h │ ├── mqtt │ │ ├── iot_mqtt_client.h │ │ ├── iot_mqtt_connect.h │ │ ├── iot_mqtt_format.h │ │ ├── iot_mqtt_packet.h │ │ ├── iot_mqtt_publish.h │ │ ├── iot_mqtt_stacktrace.h │ │ ├── iot_mqtt_subscribe.h │ │ └── iot_mqtt_unsubscribe.h │ ├── os │ │ └── iot_os_util.h │ ├── port │ │ ├── port_crypto.h │ │ └── port_net.h │ ├── profile │ │ └── json │ │ │ ├── device_info_example.json │ │ │ └── onboarding_config_example.json │ ├── security │ │ ├── backend │ │ │ ├── iot_security_be.h │ │ │ └── iot_security_be_bsp.h │ │ ├── iot_security_common.h │ │ ├── iot_security_crypto.h │ │ ├── iot_security_ecdh.h │ │ ├── iot_security_error.h │ │ ├── iot_security_manager.h │ │ ├── iot_security_storage.h │ │ └── iot_security_util.h │ ├── st_caps.h │ ├── st_dev.h │ └── st_dev_version.h ├── iot_api.c ├── iot_capability.c ├── iot_dump_log.c ├── iot_log_file.c ├── iot_main.c ├── iot_nv_data.c ├── iot_root_ca.c ├── iot_serialize.c ├── iot_util.c ├── iot_uuid.c ├── iot_wt.c ├── mqtt │ ├── CMakeLists.txt │ ├── client │ │ └── iot_mqtt_client.c │ └── packet │ │ ├── iot_mqtt_connect_client.c │ │ ├── iot_mqtt_connect_server.c │ │ ├── iot_mqtt_deserialize_publish.c │ │ ├── iot_mqtt_format.c │ │ ├── iot_mqtt_packet.c │ │ ├── iot_mqtt_serialize_publish.c │ │ ├── iot_mqtt_subscribe_client.c │ │ ├── iot_mqtt_subscribe_server.c │ │ ├── iot_mqtt_unsubscribe_client.c │ │ └── iot_mqtt_unsubscribe_server.c ├── port │ ├── bsp │ │ ├── bk7236 │ │ │ ├── CMakeLists.txt │ │ │ ├── iot_bsp_ble_bk7236.c │ │ │ ├── iot_bsp_debug_bk7236.c │ │ │ ├── iot_bsp_fs_bk7236.c │ │ │ ├── iot_bsp_nv_data_bk7236.c │ │ │ ├── iot_bsp_random_bk7236.c │ │ │ ├── iot_bsp_system_bk7236.c │ │ │ └── iot_bsp_wifi_bk7236.c │ │ ├── bl602 │ │ │ ├── iot_bsp_ble_bl602.c │ │ │ ├── iot_bsp_debug_bl602.c │ │ │ ├── iot_bsp_fs_bl602.c │ │ │ ├── iot_bsp_nv_data_bl602.c │ │ │ ├── iot_bsp_random_bl602.c │ │ │ ├── iot_bsp_system_bl602.c │ │ │ └── iot_bsp_wifi_bl602.c │ │ ├── esp32 │ │ │ ├── CMakeLists.txt │ │ │ ├── iot_bsp_ble_esp32.c │ │ │ ├── iot_bsp_debug_esp32.c │ │ │ ├── iot_bsp_fs_esp32.c │ │ │ ├── iot_bsp_nv_data_esp32.c │ │ │ ├── iot_bsp_random_esp32.c │ │ │ ├── iot_bsp_system_esp32.c │ │ │ └── iot_bsp_wifi_esp32.c │ │ ├── posix │ │ │ ├── CMakeLists.txt │ │ │ ├── iot_bsp_debug_posix.c │ │ │ ├── iot_bsp_fs_posix.c │ │ │ ├── iot_bsp_nv_data_posix.c │ │ │ ├── iot_bsp_random_posix.c │ │ │ ├── iot_bsp_system_posix.c │ │ │ └── iot_bsp_wifi_posix.c │ │ └── raspberry │ │ │ ├── CMakeLists.txt │ │ │ ├── bluez │ │ │ ├── advertisement.c │ │ │ ├── advertisement.h │ │ │ ├── bluez_device.c │ │ │ ├── bluez_device.h │ │ │ ├── bluez_gdbus_util.c │ │ │ ├── bluez_gdbus_util.h │ │ │ ├── gatt_service.c │ │ │ └── gatt_service.h │ │ │ ├── gdbus │ │ │ ├── gdbus_util.c │ │ │ └── gdbus_util.h │ │ │ ├── iot_bsp_ble.c │ │ │ ├── iot_bsp_debug_linux.c │ │ │ ├── iot_bsp_fs_linux.c │ │ │ ├── iot_bsp_nv_data_linux.c │ │ │ ├── iot_bsp_random_linux.c │ │ │ ├── iot_bsp_system_linux.c │ │ │ ├── iot_bsp_wifi_linux.c │ │ │ ├── wifi_supplicant.c │ │ │ └── wifi_supplicant.h │ ├── crypto │ │ ├── CMakeLists.txt │ │ └── reference │ │ │ ├── libsodium_helper.c │ │ │ ├── libsodium_helper.h │ │ │ ├── mbedtls_helper.c │ │ │ ├── mbedtls_helper.h │ │ │ └── port_crypto_reference.c │ ├── net │ │ └── mbedtls │ │ │ ├── CMakeLists.txt │ │ │ └── port_net_mbedtls.c │ ├── os │ │ ├── freertos │ │ │ ├── CMakeLists.txt │ │ │ └── iot_os_util_freertos.c │ │ └── posix │ │ │ ├── CMakeLists.txt │ │ │ └── iot_os_util_posix.c │ └── security │ │ └── iot_security_be_hardware_se.h └── security │ ├── CMakeLists.txt │ ├── backend │ ├── CMakeLists.txt │ ├── hardware │ │ ├── CMakeLists.txt │ │ ├── iot_security_be_hardware.c │ │ └── virtual │ │ │ ├── CMakeLists.txt │ │ │ └── iot_security_be_virtual.c │ └── software │ │ ├── CMakeLists.txt │ │ ├── iot_security_be_bsp.c │ │ └── iot_security_be_software.c │ ├── iot_security_common.c │ ├── iot_security_crypto.c │ ├── iot_security_ecdh.c │ ├── iot_security_manager.c │ ├── iot_security_storage.c │ └── iot_security_util.c ├── stdkconfig ├── stdkconfig.cmake ├── test ├── CMakeLists.txt ├── TC_FUNC_iot_api.c ├── TC_FUNC_iot_capability.c ├── TC_FUNC_iot_dump_log.c ├── TC_FUNC_iot_easysetup_d2d.c ├── TC_FUNC_iot_easysetup_http.c ├── TC_FUNC_iot_easysetup_http_parser.c ├── TC_FUNC_iot_easysetup_httpd.c ├── TC_FUNC_iot_easysetup_st_mqtt.c ├── TC_FUNC_iot_main.c ├── TC_FUNC_iot_mqtt_client.c ├── TC_FUNC_iot_nv_data.c ├── TC_FUNC_iot_security_be_bsp.c ├── TC_FUNC_iot_security_common.c ├── TC_FUNC_iot_security_crypto.c ├── TC_FUNC_iot_security_ecdh.c ├── TC_FUNC_iot_security_helper.c ├── TC_FUNC_iot_security_helper_ed25519.c ├── TC_FUNC_iot_security_manager.c ├── TC_FUNC_iot_security_storage.c ├── TC_FUNC_iot_util.c ├── TC_FUNC_iot_uuid.c ├── TC_FUNC_iot_wt.c ├── TC_FUNCs.h ├── TC_MOCK_functions.h ├── TC_MOCK_iot_bsp.c ├── TC_MOCK_iot_net.c ├── TC_MOCK_iot_os.c ├── TC_UTIL_easysetup_common.c ├── TC_UTIL_easysetup_common.h ├── TEST_main.c └── framework │ └── cmocka │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── CPackConfig.cmake │ ├── CTestConfig.cmake │ ├── ChangeLog │ ├── CompilerChecks.cmake │ ├── ConfigureChecks.cmake │ ├── DefineOptions.cmake │ ├── INSTALL.md │ ├── NEWS │ ├── README.md │ ├── cmake │ ├── Modules │ │ ├── AddCCompilerFlag.cmake │ │ ├── AddCMockaTest.cmake │ │ ├── COPYING-CMAKE-SCRIPTS │ │ ├── CheckCCompilerFlagSSP.cmake │ │ ├── DefineCMakeDefaults.cmake │ │ ├── DefineCompilerFlags.cmake │ │ ├── DefinePlatformDefaults.cmake │ │ ├── FindNSIS.cmake │ │ └── MacroEnsureOutOfSourceBuild.cmake │ ├── Toolchain-Debian-mips.cmake │ └── Toolchain-cross-m32.cmake │ ├── cmocka-build-tree-settings.cmake.in │ ├── cmocka-config.cmake.in │ ├── cmocka.pc.cmake │ ├── config.h.cmake │ ├── coverity │ ├── README │ ├── coverity_assert_model.c │ └── coverity_internal_model.c │ ├── doc │ ├── CMakeLists.txt │ ├── index.html │ ├── mainpage.dox │ └── that_style │ │ ├── LICENSE │ │ ├── README.md │ │ ├── header.html │ │ ├── img │ │ ├── doc.svg │ │ ├── folderclosed.svg │ │ ├── folderopen.svg │ │ ├── mag_glass.svg │ │ ├── nav_edge_inter.svg │ │ ├── nav_edge_left.svg │ │ ├── nav_edge_right.svg │ │ ├── splitbar_handle.svg │ │ ├── sync_off.png │ │ └── sync_on.png │ │ ├── js │ │ └── striped_bg.js │ │ └── that_style.css │ ├── example │ ├── CMakeLists.txt │ ├── allocate_module.c │ ├── allocate_module_test.c │ ├── assert_macro.c │ ├── assert_macro.h │ ├── assert_macro_test.c │ ├── assert_module.c │ ├── assert_module.h │ ├── assert_module_test.c │ ├── calculator.c │ ├── calculator_test.c │ ├── database.h │ ├── mock │ │ ├── CMakeLists.txt │ │ ├── chef_wrap │ │ │ ├── CMakeLists.txt │ │ │ ├── chef.c │ │ │ ├── chef.h │ │ │ ├── waiter_test_wrap.c │ │ │ └── waiter_test_wrap.h │ │ └── uptime │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── proc_uptime.c │ │ │ ├── proc_uptime.h │ │ │ ├── test_uptime.c │ │ │ └── uptime.c │ └── simple_test.c │ ├── include │ ├── CMakeLists.txt │ ├── cmocka.h │ ├── cmocka_pbc.h │ ├── cmocka_private.h │ └── cmockery │ │ ├── cmockery.h │ │ └── pbc.h │ ├── src │ ├── CMakeLists.txt │ ├── cmocka.c │ └── cmocka.def │ └── tests │ ├── CMakeLists.txt │ ├── cmocka_test.cmake │ ├── ctest-default.cmake │ ├── test_alloc.c │ ├── test_assert_macros.c │ ├── test_assert_macros_fail.c │ ├── test_basics.c │ ├── test_cmockery.c │ ├── test_exception_handler.c │ ├── test_fixtures.c │ ├── test_float_macros.c │ ├── test_group_fixtures.c │ ├── test_group_setup_assert.c │ ├── test_group_setup_fail.c │ ├── test_groups.c │ ├── test_ordering.c │ ├── test_ordering_fail.c │ ├── test_returns.c │ ├── test_returns_fail.c │ ├── test_setup_fail.c │ ├── test_skip.c │ ├── test_skip_filter.c │ ├── test_strmatch.c │ └── test_wildcard.c └── tools ├── keygen ├── README.md └── stdk-keygen.py ├── manual_onboarding ├── README.md ├── res │ ├── DevWS_device_profile.png │ ├── DevWS_device_serial.png │ ├── manual_onboarding_choose_device_profile.png │ ├── manual_onboarding_choose_location_room.png │ ├── manual_onboarding_enter_PAT.png │ ├── manual_onboarding_enter_label.png │ ├── manual_onboarding_enter_serial.png │ ├── manual_onboarding_register_result.png │ ├── manual_onboarding_result.png │ └── manual_onboarding_review_register_info.png └── stdk-manual-onboarding.py └── qrgen ├── README.md └── stdk-qrgen.py /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/README.md -------------------------------------------------------------------------------- /doc/APIs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/APIs.md -------------------------------------------------------------------------------- /doc/Commercialization_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/Commercialization_Guide.md -------------------------------------------------------------------------------- /doc/SAMSUNGCLA.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/SAMSUNGCLA.docx -------------------------------------------------------------------------------- /doc/STDK_Config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/STDK_Config.md -------------------------------------------------------------------------------- /doc/STDK_Key_Generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/STDK_Key_Generation.md -------------------------------------------------------------------------------- /doc/STDK_QR_Generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/STDK_QR_Generation.md -------------------------------------------------------------------------------- /doc/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/getting_started.md -------------------------------------------------------------------------------- /doc/porting_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/porting_guide.md -------------------------------------------------------------------------------- /doc/res/add-product-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/res/add-product-info.gif -------------------------------------------------------------------------------- /doc/res/add_device1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/res/add_device1.png -------------------------------------------------------------------------------- /doc/res/add_device2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/res/add_device2.png -------------------------------------------------------------------------------- /doc/res/add_device3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/res/add_device3.png -------------------------------------------------------------------------------- /doc/res/adding_test_device2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/res/adding_test_device2.png -------------------------------------------------------------------------------- /doc/res/create-device-onboarding.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/res/create-device-onboarding.gif -------------------------------------------------------------------------------- /doc/res/create-device-profile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/res/create-device-profile.gif -------------------------------------------------------------------------------- /doc/res/create-project.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/res/create-project.gif -------------------------------------------------------------------------------- /doc/res/deploy_to_test_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/res/deploy_to_test_switch.png -------------------------------------------------------------------------------- /doc/res/developer_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/res/developer_mode.png -------------------------------------------------------------------------------- /doc/res/device_control1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/res/device_control1.png -------------------------------------------------------------------------------- /doc/res/downloading_onboarding_config_file_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/res/downloading_onboarding_config_file_switch.png -------------------------------------------------------------------------------- /doc/res/register-test-device.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/res/register-test-device.gif -------------------------------------------------------------------------------- /doc/res/sign_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/res/sign_in.png -------------------------------------------------------------------------------- /doc/res/st_device_sdk_arch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/res/st_device_sdk_arch.jpg -------------------------------------------------------------------------------- /doc/res/st_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/doc/res/st_logo.png -------------------------------------------------------------------------------- /example/esp32/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/esp32/CMakeLists.txt -------------------------------------------------------------------------------- /example/esp32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/esp32/README.md -------------------------------------------------------------------------------- /example/esp32/custom_partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/esp32/custom_partitions.csv -------------------------------------------------------------------------------- /example/esp32/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/esp32/main/CMakeLists.txt -------------------------------------------------------------------------------- /example/esp32/main/device_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/esp32/main/device_control.c -------------------------------------------------------------------------------- /example/esp32/main/device_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/esp32/main/device_control.h -------------------------------------------------------------------------------- /example/esp32/main/device_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/esp32/main/device_info.json -------------------------------------------------------------------------------- /example/esp32/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/esp32/main/idf_component.yml -------------------------------------------------------------------------------- /example/esp32/main/iot_cli_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/esp32/main/iot_cli_cmd.c -------------------------------------------------------------------------------- /example/esp32/main/iot_cli_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/esp32/main/iot_cli_cmd.h -------------------------------------------------------------------------------- /example/esp32/main/iot_uart_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/esp32/main/iot_uart_cli.c -------------------------------------------------------------------------------- /example/esp32/main/iot_uart_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/esp32/main/iot_uart_cli.h -------------------------------------------------------------------------------- /example/esp32/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/esp32/main/main.c -------------------------------------------------------------------------------- /example/esp32/main/onboarding_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/esp32/main/onboarding_config.json -------------------------------------------------------------------------------- /example/esp32/main/stdkconfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/esp32/main/stdkconfig.cmake -------------------------------------------------------------------------------- /example/esp32/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/esp32/sdkconfig -------------------------------------------------------------------------------- /example/esp32/sdkconfig.esp32c3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/esp32/sdkconfig.esp32c3 -------------------------------------------------------------------------------- /example/esp32/sdkconfig.esp32s3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/esp32/sdkconfig.esp32s3 -------------------------------------------------------------------------------- /example/posix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/posix/CMakeLists.txt -------------------------------------------------------------------------------- /example/posix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/posix/README.md -------------------------------------------------------------------------------- /example/posix/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/posix/example.c -------------------------------------------------------------------------------- /example/posix/stdkconfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/posix/stdkconfig.cmake -------------------------------------------------------------------------------- /example/raspberry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/raspberry/CMakeLists.txt -------------------------------------------------------------------------------- /example/raspberry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/raspberry/README.md -------------------------------------------------------------------------------- /example/raspberry/device_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/raspberry/device_info.json -------------------------------------------------------------------------------- /example/raspberry/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/raspberry/example.c -------------------------------------------------------------------------------- /example/raspberry/onboarding_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/raspberry/onboarding_config.json -------------------------------------------------------------------------------- /example/raspberry/patches/bluez/0001-add-manufacturer-data-for-scan-response.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/raspberry/patches/bluez/0001-add-manufacturer-data-for-scan-response.patch -------------------------------------------------------------------------------- /example/raspberry/patches/bluez/0002-add-documentation-for-property-ManufacturerDataSR.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/raspberry/patches/bluez/0002-add-documentation-for-property-ManufacturerDataSR.patch -------------------------------------------------------------------------------- /example/raspberry/patches/bluez/0003-add-manufacturer-data-at-the-end.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/raspberry/patches/bluez/0003-add-manufacturer-data-at-the-end.patch -------------------------------------------------------------------------------- /example/raspberry/stdkconfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/example/raspberry/stdkconfig.cmake -------------------------------------------------------------------------------- /make/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/make/common.mk -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/Kconfig -------------------------------------------------------------------------------- /src/component.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/component.cmake -------------------------------------------------------------------------------- /src/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/component.mk -------------------------------------------------------------------------------- /src/deps/cbor/tinycbor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/cbor/tinycbor/LICENSE -------------------------------------------------------------------------------- /src/deps/cbor/tinycbor/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/cbor/tinycbor/README -------------------------------------------------------------------------------- /src/deps/cbor/tinycbor/VERSION: -------------------------------------------------------------------------------- 1 | 0.5.4 2 | -------------------------------------------------------------------------------- /src/deps/cbor/tinycbor/src/cbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/cbor/tinycbor/src/cbor.h -------------------------------------------------------------------------------- /src/deps/cbor/tinycbor/src/cborencoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/cbor/tinycbor/src/cborencoder.c -------------------------------------------------------------------------------- /src/deps/cbor/tinycbor/src/cborencoder_close_container_checked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/cbor/tinycbor/src/cborencoder_close_container_checked.c -------------------------------------------------------------------------------- /src/deps/cbor/tinycbor/src/cborerrorstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/cbor/tinycbor/src/cborerrorstrings.c -------------------------------------------------------------------------------- /src/deps/cbor/tinycbor/src/cborinternal_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/cbor/tinycbor/src/cborinternal_p.h -------------------------------------------------------------------------------- /src/deps/cbor/tinycbor/src/cborjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/cbor/tinycbor/src/cborjson.h -------------------------------------------------------------------------------- /src/deps/cbor/tinycbor/src/cborparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/cbor/tinycbor/src/cborparser.c -------------------------------------------------------------------------------- /src/deps/cbor/tinycbor/src/cborparser_dup_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/cbor/tinycbor/src/cborparser_dup_string.c -------------------------------------------------------------------------------- /src/deps/cbor/tinycbor/src/cbortojson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/cbor/tinycbor/src/cbortojson.c -------------------------------------------------------------------------------- /src/deps/cbor/tinycbor/src/cborvalidation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/cbor/tinycbor/src/cborvalidation.c -------------------------------------------------------------------------------- /src/deps/cbor/tinycbor/src/compilersupport_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/cbor/tinycbor/src/compilersupport_p.h -------------------------------------------------------------------------------- /src/deps/cbor/tinycbor/src/tinycbor-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/cbor/tinycbor/src/tinycbor-version.h -------------------------------------------------------------------------------- /src/deps/cbor/tinycbor/src/utf8_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/cbor/tinycbor/src/utf8_p.h -------------------------------------------------------------------------------- /src/deps/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/curl/Makefile -------------------------------------------------------------------------------- /src/deps/curl/port/include/curl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/curl/port/include/curl_config.h -------------------------------------------------------------------------------- /src/deps/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/json/Makefile -------------------------------------------------------------------------------- /src/deps/libsodium/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/libsodium/CMakeLists.txt -------------------------------------------------------------------------------- /src/deps/libsodium/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/libsodium/Makefile -------------------------------------------------------------------------------- /src/deps/libsodium/port/include/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/libsodium/port/include/sodium/version.h -------------------------------------------------------------------------------- /src/deps/mbedtls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/mbedtls/Makefile -------------------------------------------------------------------------------- /src/deps/mbedtls/port/posix/include/mbedtls/posix_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/deps/mbedtls/port/posix/include/mbedtls/posix_config.h -------------------------------------------------------------------------------- /src/easysetup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/easysetup/CMakeLists.txt -------------------------------------------------------------------------------- /src/easysetup/ble/easysetup_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/easysetup/ble/easysetup_ble.h -------------------------------------------------------------------------------- /src/easysetup/ble/iot_easysetup_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/easysetup/ble/iot_easysetup_ble.c -------------------------------------------------------------------------------- /src/easysetup/ble/iot_easysetup_ble_ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/easysetup/ble/iot_easysetup_ble_ecdh.c -------------------------------------------------------------------------------- /src/easysetup/ble/iot_easysetup_ble_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/easysetup/ble/iot_easysetup_ble_msg.c -------------------------------------------------------------------------------- /src/easysetup/ble/iot_easysetup_ble_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/easysetup/ble/iot_easysetup_ble_task.c -------------------------------------------------------------------------------- /src/easysetup/ble/iot_easysetup_d2d_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/easysetup/ble/iot_easysetup_d2d_ble.c -------------------------------------------------------------------------------- /src/easysetup/discovery/advertiser/iot_easysetup_discovery_advertiser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/easysetup/discovery/advertiser/iot_easysetup_discovery_advertiser.c -------------------------------------------------------------------------------- /src/easysetup/discovery/ssid/iot_easysetup_discovery_ssid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/easysetup/discovery/ssid/iot_easysetup_discovery_ssid.c -------------------------------------------------------------------------------- /src/easysetup/http/easysetup_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/easysetup/http/easysetup_http.h -------------------------------------------------------------------------------- /src/easysetup/http/iot_easysetup_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/easysetup/http/iot_easysetup_http.c -------------------------------------------------------------------------------- /src/easysetup/http/iot_easysetup_http_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/easysetup/http/iot_easysetup_http_parser.c -------------------------------------------------------------------------------- /src/easysetup/http/tcp/iot_easysetup_d2d_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/easysetup/http/tcp/iot_easysetup_d2d_tcp.c -------------------------------------------------------------------------------- /src/easysetup/http/tcp/iot_easysetup_httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/easysetup/http/tcp/iot_easysetup_httpd.c -------------------------------------------------------------------------------- /src/easysetup/http/tls/iot_easysetup_d2d_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/easysetup/http/tls/iot_easysetup_d2d_tls.c -------------------------------------------------------------------------------- /src/easysetup/http/tls/iot_easysetup_http_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/easysetup/http/tls/iot_easysetup_http_tls.c -------------------------------------------------------------------------------- /src/easysetup/iot_easysetup_st_mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/easysetup/iot_easysetup_st_mqtt.c -------------------------------------------------------------------------------- /src/include/bsp/bk7236/iot_bsp_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/bsp/bk7236/iot_bsp_custom.h -------------------------------------------------------------------------------- /src/include/bsp/bl602/iot_bsp_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/bsp/bl602/iot_bsp_custom.h -------------------------------------------------------------------------------- /src/include/bsp/esp32/iot_bsp_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/bsp/esp32/iot_bsp_custom.h -------------------------------------------------------------------------------- /src/include/bsp/iot_bsp_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/bsp/iot_bsp_ble.h -------------------------------------------------------------------------------- /src/include/bsp/iot_bsp_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/bsp/iot_bsp_debug.h -------------------------------------------------------------------------------- /src/include/bsp/iot_bsp_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/bsp/iot_bsp_fs.h -------------------------------------------------------------------------------- /src/include/bsp/iot_bsp_nv_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/bsp/iot_bsp_nv_data.h -------------------------------------------------------------------------------- /src/include/bsp/iot_bsp_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/bsp/iot_bsp_random.h -------------------------------------------------------------------------------- /src/include/bsp/iot_bsp_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/bsp/iot_bsp_system.h -------------------------------------------------------------------------------- /src/include/bsp/iot_bsp_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/bsp/iot_bsp_wifi.h -------------------------------------------------------------------------------- /src/include/bsp/posix/iot_bsp_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/bsp/posix/iot_bsp_custom.h -------------------------------------------------------------------------------- /src/include/bsp/raspberry/iot_bsp_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/bsp/raspberry/iot_bsp_custom.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_accelerationSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_accelerationSensor.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_activityLightingMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_activityLightingMode.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_airQualitySensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_airQualitySensor.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_alarm.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_antiSnoringPillow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_antiSnoringPillow.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_audioMute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_audioMute.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_audioVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_audioVolume.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_battery.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_bodyMassIndexMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_bodyMassIndexMeasurement.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_bodyWeightMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_bodyWeightMeasurement.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_button.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_carbonDioxideHealthConcern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_carbonDioxideHealthConcern.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_carbonDioxideMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_carbonDioxideMeasurement.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_carbonMonoxideDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_carbonMonoxideDetector.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_carbonMonoxideMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_carbonMonoxideMeasurement.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_colorControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_colorControl.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_colorTemperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_colorTemperature.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_contactSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_contactSensor.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_dishwasherOperatingState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_dishwasherOperatingState.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_doorControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_doorControl.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_dryerOperatingState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_dryerOperatingState.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_dustHealthConcern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_dustHealthConcern.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_dustSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_dustSensor.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_energyMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_energyMeter.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_equivalentCarbonDioxideMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_equivalentCarbonDioxideMeasurement.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_execute.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_fanOscillationMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_fanOscillationMode.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_fanSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_fanSpeed.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_filterStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_filterStatus.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_fineDustHealthConcern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_fineDustHealthConcern.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_fineDustSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_fineDustSensor.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_firmwareUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_firmwareUpdate.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_formaldehydeMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_formaldehydeMeasurement.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_garageDoorControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_garageDoorControl.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_gasMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_gasMeter.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_illuminanceMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_illuminanceMeasurement.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_imageCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_imageCapture.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_lock.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_mediaInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_mediaInputSource.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_mediaPlayback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_mediaPlayback.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_mediaPlaybackRepeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_mediaPlaybackRepeat.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_mediaPlaybackShuffle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_mediaPlaybackShuffle.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_mode.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_moldHealthConcern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_moldHealthConcern.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_momentary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_momentary.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_motionSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_motionSensor.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_objectDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_objectDetection.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_odorSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_odorSensor.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_operatingState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_operatingState.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_ovenOperatingState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_ovenOperatingState.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_ovenSetpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_ovenSetpoint.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_pHMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_pHMeasurement.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_panicAlarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_panicAlarm.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_powerMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_powerMeter.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_powerSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_powerSource.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_presenceSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_presenceSensor.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_radonHealthConcern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_radonHealthConcern.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_rapidCooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_rapidCooling.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_refresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_refresh.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_relativeHumidityMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_relativeHumidityMeasurement.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_remoteControlStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_remoteControlStatus.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_robotCleanerMovement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_robotCleanerMovement.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_robotCleanerTurboMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_robotCleanerTurboMode.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_samsungTV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_samsungTV.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_securitySystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_securitySystem.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_signalStrength.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_signalStrength.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_sleepSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_sleepSensor.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_smokeDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_smokeDetector.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_soundPressureLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_soundPressureLevel.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_soundSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_soundSensor.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_switch.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_switchLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_switchLevel.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_tamperAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_tamperAlert.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_temperatureAlarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_temperatureAlarm.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_temperatureMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_temperatureMeasurement.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_thermostatCoolingSetpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_thermostatCoolingSetpoint.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_thermostatFanMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_thermostatFanMode.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_thermostatHeatingSetpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_thermostatHeatingSetpoint.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_thermostatMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_thermostatMode.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_thermostatOperatingState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_thermostatOperatingState.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_thermostatSetpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_thermostatSetpoint.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_threeAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_threeAxis.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_timedSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_timedSession.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_tone.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_tvocHealthConcern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_tvocHealthConcern.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_tvocMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_tvocMeasurement.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_ultravioletIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_ultravioletIndex.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_valve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_valve.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_veryFineDustHealthConcern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_veryFineDustHealthConcern.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_veryFineDustSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_veryFineDustSensor.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_voltageMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_voltageMeasurement.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_waterSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_waterSensor.h -------------------------------------------------------------------------------- /src/include/caps/iot_caps_helper_windowShade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/caps/iot_caps_helper_windowShade.h -------------------------------------------------------------------------------- /src/include/certs/root_ca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/certs/root_ca.h -------------------------------------------------------------------------------- /src/include/external/JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/external/JSON.h -------------------------------------------------------------------------------- /src/include/iot_capability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/iot_capability.h -------------------------------------------------------------------------------- /src/include/iot_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/iot_common.h -------------------------------------------------------------------------------- /src/include/iot_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/iot_debug.h -------------------------------------------------------------------------------- /src/include/iot_dump_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/iot_dump_log.h -------------------------------------------------------------------------------- /src/include/iot_easysetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/iot_easysetup.h -------------------------------------------------------------------------------- /src/include/iot_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/iot_error.h -------------------------------------------------------------------------------- /src/include/iot_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/iot_internal.h -------------------------------------------------------------------------------- /src/include/iot_log_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/iot_log_file.h -------------------------------------------------------------------------------- /src/include/iot_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/iot_main.h -------------------------------------------------------------------------------- /src/include/iot_mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/iot_mqtt.h -------------------------------------------------------------------------------- /src/include/iot_nv_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/iot_nv_data.h -------------------------------------------------------------------------------- /src/include/iot_serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/iot_serialize.h -------------------------------------------------------------------------------- /src/include/iot_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/iot_util.h -------------------------------------------------------------------------------- /src/include/iot_uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/iot_uuid.h -------------------------------------------------------------------------------- /src/include/iot_wt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/iot_wt.h -------------------------------------------------------------------------------- /src/include/mqtt/iot_mqtt_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/mqtt/iot_mqtt_client.h -------------------------------------------------------------------------------- /src/include/mqtt/iot_mqtt_connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/mqtt/iot_mqtt_connect.h -------------------------------------------------------------------------------- /src/include/mqtt/iot_mqtt_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/mqtt/iot_mqtt_format.h -------------------------------------------------------------------------------- /src/include/mqtt/iot_mqtt_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/mqtt/iot_mqtt_packet.h -------------------------------------------------------------------------------- /src/include/mqtt/iot_mqtt_publish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/mqtt/iot_mqtt_publish.h -------------------------------------------------------------------------------- /src/include/mqtt/iot_mqtt_stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/mqtt/iot_mqtt_stacktrace.h -------------------------------------------------------------------------------- /src/include/mqtt/iot_mqtt_subscribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/mqtt/iot_mqtt_subscribe.h -------------------------------------------------------------------------------- /src/include/mqtt/iot_mqtt_unsubscribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/mqtt/iot_mqtt_unsubscribe.h -------------------------------------------------------------------------------- /src/include/os/iot_os_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/os/iot_os_util.h -------------------------------------------------------------------------------- /src/include/port/port_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/port/port_crypto.h -------------------------------------------------------------------------------- /src/include/port/port_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/port/port_net.h -------------------------------------------------------------------------------- /src/include/profile/json/device_info_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/profile/json/device_info_example.json -------------------------------------------------------------------------------- /src/include/profile/json/onboarding_config_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/profile/json/onboarding_config_example.json -------------------------------------------------------------------------------- /src/include/security/backend/iot_security_be.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/security/backend/iot_security_be.h -------------------------------------------------------------------------------- /src/include/security/backend/iot_security_be_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/security/backend/iot_security_be_bsp.h -------------------------------------------------------------------------------- /src/include/security/iot_security_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/security/iot_security_common.h -------------------------------------------------------------------------------- /src/include/security/iot_security_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/security/iot_security_crypto.h -------------------------------------------------------------------------------- /src/include/security/iot_security_ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/security/iot_security_ecdh.h -------------------------------------------------------------------------------- /src/include/security/iot_security_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/security/iot_security_error.h -------------------------------------------------------------------------------- /src/include/security/iot_security_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/security/iot_security_manager.h -------------------------------------------------------------------------------- /src/include/security/iot_security_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/security/iot_security_storage.h -------------------------------------------------------------------------------- /src/include/security/iot_security_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/security/iot_security_util.h -------------------------------------------------------------------------------- /src/include/st_caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/st_caps.h -------------------------------------------------------------------------------- /src/include/st_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/st_dev.h -------------------------------------------------------------------------------- /src/include/st_dev_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/include/st_dev_version.h -------------------------------------------------------------------------------- /src/iot_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/iot_api.c -------------------------------------------------------------------------------- /src/iot_capability.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/iot_capability.c -------------------------------------------------------------------------------- /src/iot_dump_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/iot_dump_log.c -------------------------------------------------------------------------------- /src/iot_log_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/iot_log_file.c -------------------------------------------------------------------------------- /src/iot_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/iot_main.c -------------------------------------------------------------------------------- /src/iot_nv_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/iot_nv_data.c -------------------------------------------------------------------------------- /src/iot_root_ca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/iot_root_ca.c -------------------------------------------------------------------------------- /src/iot_serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/iot_serialize.c -------------------------------------------------------------------------------- /src/iot_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/iot_util.c -------------------------------------------------------------------------------- /src/iot_uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/iot_uuid.c -------------------------------------------------------------------------------- /src/iot_wt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/iot_wt.c -------------------------------------------------------------------------------- /src/mqtt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/mqtt/CMakeLists.txt -------------------------------------------------------------------------------- /src/mqtt/client/iot_mqtt_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/mqtt/client/iot_mqtt_client.c -------------------------------------------------------------------------------- /src/mqtt/packet/iot_mqtt_connect_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/mqtt/packet/iot_mqtt_connect_client.c -------------------------------------------------------------------------------- /src/mqtt/packet/iot_mqtt_connect_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/mqtt/packet/iot_mqtt_connect_server.c -------------------------------------------------------------------------------- /src/mqtt/packet/iot_mqtt_deserialize_publish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/mqtt/packet/iot_mqtt_deserialize_publish.c -------------------------------------------------------------------------------- /src/mqtt/packet/iot_mqtt_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/mqtt/packet/iot_mqtt_format.c -------------------------------------------------------------------------------- /src/mqtt/packet/iot_mqtt_packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/mqtt/packet/iot_mqtt_packet.c -------------------------------------------------------------------------------- /src/mqtt/packet/iot_mqtt_serialize_publish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/mqtt/packet/iot_mqtt_serialize_publish.c -------------------------------------------------------------------------------- /src/mqtt/packet/iot_mqtt_subscribe_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/mqtt/packet/iot_mqtt_subscribe_client.c -------------------------------------------------------------------------------- /src/mqtt/packet/iot_mqtt_subscribe_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/mqtt/packet/iot_mqtt_subscribe_server.c -------------------------------------------------------------------------------- /src/mqtt/packet/iot_mqtt_unsubscribe_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/mqtt/packet/iot_mqtt_unsubscribe_client.c -------------------------------------------------------------------------------- /src/mqtt/packet/iot_mqtt_unsubscribe_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/mqtt/packet/iot_mqtt_unsubscribe_server.c -------------------------------------------------------------------------------- /src/port/bsp/bk7236/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/bk7236/CMakeLists.txt -------------------------------------------------------------------------------- /src/port/bsp/bk7236/iot_bsp_ble_bk7236.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/bk7236/iot_bsp_ble_bk7236.c -------------------------------------------------------------------------------- /src/port/bsp/bk7236/iot_bsp_debug_bk7236.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/bk7236/iot_bsp_debug_bk7236.c -------------------------------------------------------------------------------- /src/port/bsp/bk7236/iot_bsp_fs_bk7236.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/bk7236/iot_bsp_fs_bk7236.c -------------------------------------------------------------------------------- /src/port/bsp/bk7236/iot_bsp_nv_data_bk7236.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/bk7236/iot_bsp_nv_data_bk7236.c -------------------------------------------------------------------------------- /src/port/bsp/bk7236/iot_bsp_random_bk7236.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/bk7236/iot_bsp_random_bk7236.c -------------------------------------------------------------------------------- /src/port/bsp/bk7236/iot_bsp_system_bk7236.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/bk7236/iot_bsp_system_bk7236.c -------------------------------------------------------------------------------- /src/port/bsp/bk7236/iot_bsp_wifi_bk7236.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/bk7236/iot_bsp_wifi_bk7236.c -------------------------------------------------------------------------------- /src/port/bsp/bl602/iot_bsp_ble_bl602.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/bl602/iot_bsp_ble_bl602.c -------------------------------------------------------------------------------- /src/port/bsp/bl602/iot_bsp_debug_bl602.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/bl602/iot_bsp_debug_bl602.c -------------------------------------------------------------------------------- /src/port/bsp/bl602/iot_bsp_fs_bl602.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/bl602/iot_bsp_fs_bl602.c -------------------------------------------------------------------------------- /src/port/bsp/bl602/iot_bsp_nv_data_bl602.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/bl602/iot_bsp_nv_data_bl602.c -------------------------------------------------------------------------------- /src/port/bsp/bl602/iot_bsp_random_bl602.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/bl602/iot_bsp_random_bl602.c -------------------------------------------------------------------------------- /src/port/bsp/bl602/iot_bsp_system_bl602.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/bl602/iot_bsp_system_bl602.c -------------------------------------------------------------------------------- /src/port/bsp/bl602/iot_bsp_wifi_bl602.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/bl602/iot_bsp_wifi_bl602.c -------------------------------------------------------------------------------- /src/port/bsp/esp32/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/esp32/CMakeLists.txt -------------------------------------------------------------------------------- /src/port/bsp/esp32/iot_bsp_ble_esp32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/esp32/iot_bsp_ble_esp32.c -------------------------------------------------------------------------------- /src/port/bsp/esp32/iot_bsp_debug_esp32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/esp32/iot_bsp_debug_esp32.c -------------------------------------------------------------------------------- /src/port/bsp/esp32/iot_bsp_fs_esp32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/esp32/iot_bsp_fs_esp32.c -------------------------------------------------------------------------------- /src/port/bsp/esp32/iot_bsp_nv_data_esp32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/esp32/iot_bsp_nv_data_esp32.c -------------------------------------------------------------------------------- /src/port/bsp/esp32/iot_bsp_random_esp32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/esp32/iot_bsp_random_esp32.c -------------------------------------------------------------------------------- /src/port/bsp/esp32/iot_bsp_system_esp32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/esp32/iot_bsp_system_esp32.c -------------------------------------------------------------------------------- /src/port/bsp/esp32/iot_bsp_wifi_esp32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/esp32/iot_bsp_wifi_esp32.c -------------------------------------------------------------------------------- /src/port/bsp/posix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/posix/CMakeLists.txt -------------------------------------------------------------------------------- /src/port/bsp/posix/iot_bsp_debug_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/posix/iot_bsp_debug_posix.c -------------------------------------------------------------------------------- /src/port/bsp/posix/iot_bsp_fs_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/posix/iot_bsp_fs_posix.c -------------------------------------------------------------------------------- /src/port/bsp/posix/iot_bsp_nv_data_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/posix/iot_bsp_nv_data_posix.c -------------------------------------------------------------------------------- /src/port/bsp/posix/iot_bsp_random_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/posix/iot_bsp_random_posix.c -------------------------------------------------------------------------------- /src/port/bsp/posix/iot_bsp_system_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/posix/iot_bsp_system_posix.c -------------------------------------------------------------------------------- /src/port/bsp/posix/iot_bsp_wifi_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/posix/iot_bsp_wifi_posix.c -------------------------------------------------------------------------------- /src/port/bsp/raspberry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/CMakeLists.txt -------------------------------------------------------------------------------- /src/port/bsp/raspberry/bluez/advertisement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/bluez/advertisement.c -------------------------------------------------------------------------------- /src/port/bsp/raspberry/bluez/advertisement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/bluez/advertisement.h -------------------------------------------------------------------------------- /src/port/bsp/raspberry/bluez/bluez_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/bluez/bluez_device.c -------------------------------------------------------------------------------- /src/port/bsp/raspberry/bluez/bluez_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/bluez/bluez_device.h -------------------------------------------------------------------------------- /src/port/bsp/raspberry/bluez/bluez_gdbus_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/bluez/bluez_gdbus_util.c -------------------------------------------------------------------------------- /src/port/bsp/raspberry/bluez/bluez_gdbus_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/bluez/bluez_gdbus_util.h -------------------------------------------------------------------------------- /src/port/bsp/raspberry/bluez/gatt_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/bluez/gatt_service.c -------------------------------------------------------------------------------- /src/port/bsp/raspberry/bluez/gatt_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/bluez/gatt_service.h -------------------------------------------------------------------------------- /src/port/bsp/raspberry/gdbus/gdbus_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/gdbus/gdbus_util.c -------------------------------------------------------------------------------- /src/port/bsp/raspberry/gdbus/gdbus_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/gdbus/gdbus_util.h -------------------------------------------------------------------------------- /src/port/bsp/raspberry/iot_bsp_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/iot_bsp_ble.c -------------------------------------------------------------------------------- /src/port/bsp/raspberry/iot_bsp_debug_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/iot_bsp_debug_linux.c -------------------------------------------------------------------------------- /src/port/bsp/raspberry/iot_bsp_fs_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/iot_bsp_fs_linux.c -------------------------------------------------------------------------------- /src/port/bsp/raspberry/iot_bsp_nv_data_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/iot_bsp_nv_data_linux.c -------------------------------------------------------------------------------- /src/port/bsp/raspberry/iot_bsp_random_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/iot_bsp_random_linux.c -------------------------------------------------------------------------------- /src/port/bsp/raspberry/iot_bsp_system_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/iot_bsp_system_linux.c -------------------------------------------------------------------------------- /src/port/bsp/raspberry/iot_bsp_wifi_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/iot_bsp_wifi_linux.c -------------------------------------------------------------------------------- /src/port/bsp/raspberry/wifi_supplicant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/wifi_supplicant.c -------------------------------------------------------------------------------- /src/port/bsp/raspberry/wifi_supplicant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/bsp/raspberry/wifi_supplicant.h -------------------------------------------------------------------------------- /src/port/crypto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/crypto/CMakeLists.txt -------------------------------------------------------------------------------- /src/port/crypto/reference/libsodium_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/crypto/reference/libsodium_helper.c -------------------------------------------------------------------------------- /src/port/crypto/reference/libsodium_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/crypto/reference/libsodium_helper.h -------------------------------------------------------------------------------- /src/port/crypto/reference/mbedtls_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/crypto/reference/mbedtls_helper.c -------------------------------------------------------------------------------- /src/port/crypto/reference/mbedtls_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/crypto/reference/mbedtls_helper.h -------------------------------------------------------------------------------- /src/port/crypto/reference/port_crypto_reference.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/crypto/reference/port_crypto_reference.c -------------------------------------------------------------------------------- /src/port/net/mbedtls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/net/mbedtls/CMakeLists.txt -------------------------------------------------------------------------------- /src/port/net/mbedtls/port_net_mbedtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/net/mbedtls/port_net_mbedtls.c -------------------------------------------------------------------------------- /src/port/os/freertos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/os/freertos/CMakeLists.txt -------------------------------------------------------------------------------- /src/port/os/freertos/iot_os_util_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/os/freertos/iot_os_util_freertos.c -------------------------------------------------------------------------------- /src/port/os/posix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/os/posix/CMakeLists.txt -------------------------------------------------------------------------------- /src/port/os/posix/iot_os_util_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/os/posix/iot_os_util_posix.c -------------------------------------------------------------------------------- /src/port/security/iot_security_be_hardware_se.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/port/security/iot_security_be_hardware_se.h -------------------------------------------------------------------------------- /src/security/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/security/CMakeLists.txt -------------------------------------------------------------------------------- /src/security/backend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/security/backend/CMakeLists.txt -------------------------------------------------------------------------------- /src/security/backend/hardware/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/security/backend/hardware/CMakeLists.txt -------------------------------------------------------------------------------- /src/security/backend/hardware/iot_security_be_hardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/security/backend/hardware/iot_security_be_hardware.c -------------------------------------------------------------------------------- /src/security/backend/hardware/virtual/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(iotcore 2 | PRIVATE 3 | iot_security_be_virtual.c 4 | ) 5 | -------------------------------------------------------------------------------- /src/security/backend/hardware/virtual/iot_security_be_virtual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/security/backend/hardware/virtual/iot_security_be_virtual.c -------------------------------------------------------------------------------- /src/security/backend/software/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/security/backend/software/CMakeLists.txt -------------------------------------------------------------------------------- /src/security/backend/software/iot_security_be_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/security/backend/software/iot_security_be_bsp.c -------------------------------------------------------------------------------- /src/security/backend/software/iot_security_be_software.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/security/backend/software/iot_security_be_software.c -------------------------------------------------------------------------------- /src/security/iot_security_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/security/iot_security_common.c -------------------------------------------------------------------------------- /src/security/iot_security_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/security/iot_security_crypto.c -------------------------------------------------------------------------------- /src/security/iot_security_ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/security/iot_security_ecdh.c -------------------------------------------------------------------------------- /src/security/iot_security_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/security/iot_security_manager.c -------------------------------------------------------------------------------- /src/security/iot_security_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/security/iot_security_storage.c -------------------------------------------------------------------------------- /src/security/iot_security_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/src/security/iot_security_util.c -------------------------------------------------------------------------------- /stdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/stdkconfig -------------------------------------------------------------------------------- /stdkconfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/stdkconfig.cmake -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/TC_FUNC_iot_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_api.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_capability.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_capability.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_dump_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_dump_log.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_easysetup_d2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_easysetup_d2d.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_easysetup_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_easysetup_http.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_easysetup_http_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_easysetup_http_parser.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_easysetup_httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_easysetup_httpd.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_easysetup_st_mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_easysetup_st_mqtt.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_main.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_mqtt_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_mqtt_client.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_nv_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_nv_data.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_security_be_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_security_be_bsp.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_security_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_security_common.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_security_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_security_crypto.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_security_ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_security_ecdh.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_security_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_security_helper.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_security_helper_ed25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_security_helper_ed25519.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_security_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_security_manager.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_security_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_security_storage.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_util.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_uuid.c -------------------------------------------------------------------------------- /test/TC_FUNC_iot_wt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNC_iot_wt.c -------------------------------------------------------------------------------- /test/TC_FUNCs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_FUNCs.h -------------------------------------------------------------------------------- /test/TC_MOCK_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_MOCK_functions.h -------------------------------------------------------------------------------- /test/TC_MOCK_iot_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_MOCK_iot_bsp.c -------------------------------------------------------------------------------- /test/TC_MOCK_iot_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_MOCK_iot_net.c -------------------------------------------------------------------------------- /test/TC_MOCK_iot_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_MOCK_iot_os.c -------------------------------------------------------------------------------- /test/TC_UTIL_easysetup_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_UTIL_easysetup_common.c -------------------------------------------------------------------------------- /test/TC_UTIL_easysetup_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TC_UTIL_easysetup_common.h -------------------------------------------------------------------------------- /test/TEST_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/TEST_main.c -------------------------------------------------------------------------------- /test/framework/cmocka/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/AUTHORS -------------------------------------------------------------------------------- /test/framework/cmocka/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/CMakeLists.txt -------------------------------------------------------------------------------- /test/framework/cmocka/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/COPYING -------------------------------------------------------------------------------- /test/framework/cmocka/CPackConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/CPackConfig.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/CTestConfig.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/ChangeLog -------------------------------------------------------------------------------- /test/framework/cmocka/CompilerChecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/CompilerChecks.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/ConfigureChecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/ConfigureChecks.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/DefineOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/DefineOptions.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/INSTALL.md -------------------------------------------------------------------------------- /test/framework/cmocka/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/framework/cmocka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/README.md -------------------------------------------------------------------------------- /test/framework/cmocka/cmake/Modules/AddCCompilerFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/cmake/Modules/AddCCompilerFlag.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/cmake/Modules/AddCMockaTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/cmake/Modules/AddCMockaTest.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/cmake/Modules/COPYING-CMAKE-SCRIPTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/cmake/Modules/COPYING-CMAKE-SCRIPTS -------------------------------------------------------------------------------- /test/framework/cmocka/cmake/Modules/CheckCCompilerFlagSSP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/cmake/Modules/CheckCCompilerFlagSSP.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/cmake/Modules/DefineCMakeDefaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/cmake/Modules/DefineCMakeDefaults.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/cmake/Modules/DefineCompilerFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/cmake/Modules/DefineCompilerFlags.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/cmake/Modules/DefinePlatformDefaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/cmake/Modules/DefinePlatformDefaults.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/cmake/Modules/FindNSIS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/cmake/Modules/FindNSIS.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/cmake/Modules/MacroEnsureOutOfSourceBuild.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/cmake/Modules/MacroEnsureOutOfSourceBuild.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/cmake/Toolchain-Debian-mips.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/cmake/Toolchain-Debian-mips.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/cmake/Toolchain-cross-m32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/cmake/Toolchain-cross-m32.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/cmocka-build-tree-settings.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/cmocka-build-tree-settings.cmake.in -------------------------------------------------------------------------------- /test/framework/cmocka/cmocka-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/cmocka-config.cmake.in -------------------------------------------------------------------------------- /test/framework/cmocka/cmocka.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/cmocka.pc.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/config.h.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/coverity/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/coverity/README -------------------------------------------------------------------------------- /test/framework/cmocka/coverity/coverity_assert_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/coverity/coverity_assert_model.c -------------------------------------------------------------------------------- /test/framework/cmocka/coverity/coverity_internal_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/coverity/coverity_internal_model.c -------------------------------------------------------------------------------- /test/framework/cmocka/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/doc/CMakeLists.txt -------------------------------------------------------------------------------- /test/framework/cmocka/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/doc/index.html -------------------------------------------------------------------------------- /test/framework/cmocka/doc/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/doc/mainpage.dox -------------------------------------------------------------------------------- /test/framework/cmocka/doc/that_style/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/doc/that_style/LICENSE -------------------------------------------------------------------------------- /test/framework/cmocka/doc/that_style/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/doc/that_style/README.md -------------------------------------------------------------------------------- /test/framework/cmocka/doc/that_style/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/doc/that_style/header.html -------------------------------------------------------------------------------- /test/framework/cmocka/doc/that_style/img/doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/doc/that_style/img/doc.svg -------------------------------------------------------------------------------- /test/framework/cmocka/doc/that_style/img/folderclosed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/doc/that_style/img/folderclosed.svg -------------------------------------------------------------------------------- /test/framework/cmocka/doc/that_style/img/folderopen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/doc/that_style/img/folderopen.svg -------------------------------------------------------------------------------- /test/framework/cmocka/doc/that_style/img/mag_glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/doc/that_style/img/mag_glass.svg -------------------------------------------------------------------------------- /test/framework/cmocka/doc/that_style/img/nav_edge_inter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/doc/that_style/img/nav_edge_inter.svg -------------------------------------------------------------------------------- /test/framework/cmocka/doc/that_style/img/nav_edge_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/doc/that_style/img/nav_edge_left.svg -------------------------------------------------------------------------------- /test/framework/cmocka/doc/that_style/img/nav_edge_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/doc/that_style/img/nav_edge_right.svg -------------------------------------------------------------------------------- /test/framework/cmocka/doc/that_style/img/splitbar_handle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/doc/that_style/img/splitbar_handle.svg -------------------------------------------------------------------------------- /test/framework/cmocka/doc/that_style/img/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/doc/that_style/img/sync_off.png -------------------------------------------------------------------------------- /test/framework/cmocka/doc/that_style/img/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/doc/that_style/img/sync_on.png -------------------------------------------------------------------------------- /test/framework/cmocka/doc/that_style/js/striped_bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/doc/that_style/js/striped_bg.js -------------------------------------------------------------------------------- /test/framework/cmocka/doc/that_style/that_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/doc/that_style/that_style.css -------------------------------------------------------------------------------- /test/framework/cmocka/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/CMakeLists.txt -------------------------------------------------------------------------------- /test/framework/cmocka/example/allocate_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/allocate_module.c -------------------------------------------------------------------------------- /test/framework/cmocka/example/allocate_module_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/allocate_module_test.c -------------------------------------------------------------------------------- /test/framework/cmocka/example/assert_macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/assert_macro.c -------------------------------------------------------------------------------- /test/framework/cmocka/example/assert_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/assert_macro.h -------------------------------------------------------------------------------- /test/framework/cmocka/example/assert_macro_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/assert_macro_test.c -------------------------------------------------------------------------------- /test/framework/cmocka/example/assert_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/assert_module.c -------------------------------------------------------------------------------- /test/framework/cmocka/example/assert_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/assert_module.h -------------------------------------------------------------------------------- /test/framework/cmocka/example/assert_module_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/assert_module_test.c -------------------------------------------------------------------------------- /test/framework/cmocka/example/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/calculator.c -------------------------------------------------------------------------------- /test/framework/cmocka/example/calculator_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/calculator_test.c -------------------------------------------------------------------------------- /test/framework/cmocka/example/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/database.h -------------------------------------------------------------------------------- /test/framework/cmocka/example/mock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/mock/CMakeLists.txt -------------------------------------------------------------------------------- /test/framework/cmocka/example/mock/chef_wrap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/mock/chef_wrap/CMakeLists.txt -------------------------------------------------------------------------------- /test/framework/cmocka/example/mock/chef_wrap/chef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/mock/chef_wrap/chef.c -------------------------------------------------------------------------------- /test/framework/cmocka/example/mock/chef_wrap/chef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/mock/chef_wrap/chef.h -------------------------------------------------------------------------------- /test/framework/cmocka/example/mock/chef_wrap/waiter_test_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/mock/chef_wrap/waiter_test_wrap.c -------------------------------------------------------------------------------- /test/framework/cmocka/example/mock/chef_wrap/waiter_test_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/mock/chef_wrap/waiter_test_wrap.h -------------------------------------------------------------------------------- /test/framework/cmocka/example/mock/uptime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/mock/uptime/CMakeLists.txt -------------------------------------------------------------------------------- /test/framework/cmocka/example/mock/uptime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/mock/uptime/README.md -------------------------------------------------------------------------------- /test/framework/cmocka/example/mock/uptime/proc_uptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/mock/uptime/proc_uptime.c -------------------------------------------------------------------------------- /test/framework/cmocka/example/mock/uptime/proc_uptime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/mock/uptime/proc_uptime.h -------------------------------------------------------------------------------- /test/framework/cmocka/example/mock/uptime/test_uptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/mock/uptime/test_uptime.c -------------------------------------------------------------------------------- /test/framework/cmocka/example/mock/uptime/uptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/mock/uptime/uptime.c -------------------------------------------------------------------------------- /test/framework/cmocka/example/simple_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/example/simple_test.c -------------------------------------------------------------------------------- /test/framework/cmocka/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/include/CMakeLists.txt -------------------------------------------------------------------------------- /test/framework/cmocka/include/cmocka.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/include/cmocka.h -------------------------------------------------------------------------------- /test/framework/cmocka/include/cmocka_pbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/include/cmocka_pbc.h -------------------------------------------------------------------------------- /test/framework/cmocka/include/cmocka_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/include/cmocka_private.h -------------------------------------------------------------------------------- /test/framework/cmocka/include/cmockery/cmockery.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /test/framework/cmocka/include/cmockery/pbc.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /test/framework/cmocka/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/framework/cmocka/src/cmocka.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/src/cmocka.c -------------------------------------------------------------------------------- /test/framework/cmocka/src/cmocka.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/src/cmocka.def -------------------------------------------------------------------------------- /test/framework/cmocka/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/framework/cmocka/tests/cmocka_test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/cmocka_test.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/tests/ctest-default.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/ctest-default.cmake -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_alloc.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_assert_macros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_assert_macros.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_assert_macros_fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_assert_macros_fail.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_basics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_basics.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_cmockery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_cmockery.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_exception_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_exception_handler.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_fixtures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_fixtures.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_float_macros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_float_macros.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_group_fixtures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_group_fixtures.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_group_setup_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_group_setup_assert.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_group_setup_fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_group_setup_fail.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_groups.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_ordering.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_ordering.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_ordering_fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_ordering_fail.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_returns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_returns.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_returns_fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_returns_fail.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_setup_fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_setup_fail.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_skip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_skip.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_skip_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_skip_filter.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_strmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_strmatch.c -------------------------------------------------------------------------------- /test/framework/cmocka/tests/test_wildcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/test/framework/cmocka/tests/test_wildcard.c -------------------------------------------------------------------------------- /tools/keygen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/tools/keygen/README.md -------------------------------------------------------------------------------- /tools/keygen/stdk-keygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/tools/keygen/stdk-keygen.py -------------------------------------------------------------------------------- /tools/manual_onboarding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/tools/manual_onboarding/README.md -------------------------------------------------------------------------------- /tools/manual_onboarding/res/DevWS_device_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/tools/manual_onboarding/res/DevWS_device_profile.png -------------------------------------------------------------------------------- /tools/manual_onboarding/res/DevWS_device_serial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/tools/manual_onboarding/res/DevWS_device_serial.png -------------------------------------------------------------------------------- /tools/manual_onboarding/res/manual_onboarding_choose_device_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/tools/manual_onboarding/res/manual_onboarding_choose_device_profile.png -------------------------------------------------------------------------------- /tools/manual_onboarding/res/manual_onboarding_choose_location_room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/tools/manual_onboarding/res/manual_onboarding_choose_location_room.png -------------------------------------------------------------------------------- /tools/manual_onboarding/res/manual_onboarding_enter_PAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/tools/manual_onboarding/res/manual_onboarding_enter_PAT.png -------------------------------------------------------------------------------- /tools/manual_onboarding/res/manual_onboarding_enter_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/tools/manual_onboarding/res/manual_onboarding_enter_label.png -------------------------------------------------------------------------------- /tools/manual_onboarding/res/manual_onboarding_enter_serial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/tools/manual_onboarding/res/manual_onboarding_enter_serial.png -------------------------------------------------------------------------------- /tools/manual_onboarding/res/manual_onboarding_register_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/tools/manual_onboarding/res/manual_onboarding_register_result.png -------------------------------------------------------------------------------- /tools/manual_onboarding/res/manual_onboarding_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/tools/manual_onboarding/res/manual_onboarding_result.png -------------------------------------------------------------------------------- /tools/manual_onboarding/res/manual_onboarding_review_register_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/tools/manual_onboarding/res/manual_onboarding_review_register_info.png -------------------------------------------------------------------------------- /tools/manual_onboarding/stdk-manual-onboarding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/tools/manual_onboarding/stdk-manual-onboarding.py -------------------------------------------------------------------------------- /tools/qrgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/tools/qrgen/README.md -------------------------------------------------------------------------------- /tools/qrgen/stdk-qrgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/st-device-sdk-c/HEAD/tools/qrgen/stdk-qrgen.py --------------------------------------------------------------------------------