[TBT][NonACR][Sensor][TFDF-10729,App not launching fix] 24/237424/1
authorNibha Sharma <nibha.sharma@samsung.com>
Tue, 30 Jun 2020 10:07:20 +0000 (15:37 +0530)
committerNibha Sharma <nibha.sharma@samsung.com>
Tue, 30 Jun 2020 10:07:20 +0000 (15:37 +0530)
Change-Id: Ica2a4f6ea351a902a72f72343c3a2a165c752832
Signed-off-by: Nibha Sharma <nibha.sharma@samsung.com>
release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk [changed mode: 0644->0755]
release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk [changed mode: 0644->0755]
tbtcoreapp/src/model/tbt-list.c

old mode 100644 (file)
new mode 100755 (executable)
index 22b0520..175c1da
Binary files a/release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk and b/release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk differ
old mode 100644 (file)
new mode 100755 (executable)
index b60b2cd..2c1c578
Binary files a/release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk and b/release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk differ
index db4dc248042a5f67800e0976b1a14767dbcb00f5..5935b71e7309b97742e6d99c5feb131b4ed1ef76 100755 (executable)
@@ -1291,7 +1291,7 @@ static tbt_info tbtapps[] =
                        .sensor_response_interval = 100,
                        .sensortype = SENSOR_PROXIMITY,
 
-                       .units = SENSOR_UNIT_MAX,
+                       .units = SENSOR_UNIT_DEGREE_PER_SECOND,
                        .required_features_count = 1,
                        .features_required = {FEATURE_SENSOR_PROXIMITY}
 
@@ -1333,7 +1333,7 @@ static tbt_info tbtapps[] =
                        .result = -1,
                        .sensor_response_interval = 100,
                        .sensortype = SENSOR_ULTRAVIOLET,
-                       .units = SENSOR_UNIT_MAX,
+                       .units = SENSOR_UNIT_DEGREE_PER_SECOND,
                        .required_features_count = 1,
                        .features_required = {FEATURE_SENSOR_ULTRAVIOLET}
                },
@@ -3020,7 +3020,7 @@ void tbt_list_init()
                        ret = sensor_get_resolution(info->sensor, &resolution);
                        DBG("sensor_get_resolution failed: %s",get_sensor_error(ret));
 
-                       DBG("apptype: %d resolution: %f",info->apptype,resolution);
+                       DBG("apptype: %d %s resolution: %f",info->apptype,info->name,resolution);
                        info->units_str = sensor_units_str_get(info->units);
                        DBG("Unit String: %s", info->units_str);
                        info->value_range = info->value_max - info->value_min;