Kibak Yoon [Mon, 5 Jan 2015 01:12:51 +0000 (17:12 -0800)]
Merge changes I8c246a45,I8b9be20f into tizen
* changes:
Updated sensor framework common files for RV sensor
Adding Makelist support for virtual sensor configuration
Kibak Yoon [Mon, 5 Jan 2015 01:12:20 +0000 (17:12 -0800)]
Merge "Adding lock in virtual sensor layer for sensor fusion library" into tizen
Kibak Yoon [Mon, 5 Jan 2015 01:12:08 +0000 (17:12 -0800)]
Merge "Updating virtual sensor xml configuration for multiple devices" into tizen
Kibak Yoon [Mon, 5 Jan 2015 01:11:47 +0000 (17:11 -0800)]
Merge "Fixing 64 bit compiler issue for sensor_data class" into tizen
Kibak Yoon [Mon, 5 Jan 2015 01:11:30 +0000 (17:11 -0800)]
Merge "Removed compiler warning - comparison between signed and unsigned integers" into tizen
Kibak Yoon [Mon, 5 Jan 2015 01:11:04 +0000 (17:11 -0800)]
Merge "Removed compiler warning - pointer of type 'void *' used in arithmetic" into tizen
Kibak Yoon [Mon, 5 Jan 2015 01:10:30 +0000 (17:10 -0800)]
Merge "Removed compiler warning - dereferencing type-punned pointer will break strict-aliasing rules" into tizen
Kibak Yoon [Mon, 5 Jan 2015 01:10:12 +0000 (17:10 -0800)]
Merge "Removed compiler warning - Comparison between signed and unsigned integers" into tizen
Kibak Yoon [Mon, 5 Jan 2015 01:09:52 +0000 (17:09 -0800)]
Merge "Removed warning - use of deprecated function" into tizen
Kibak Yoon [Mon, 5 Jan 2015 01:09:31 +0000 (17:09 -0800)]
Merge "Removed compiler warning - implicit declaration of a function" into tizen
Kibak Yoon [Mon, 5 Jan 2015 01:09:17 +0000 (17:09 -0800)]
Merge "Removed compiler warning - ignoring return value" into tizen
Ramasamy [Fri, 2 Jan 2015 06:01:45 +0000 (11:31 +0530)]
Updated sensor framework common files for RV sensor
- Updated sensor_common.h file for RV sensor
- Updated client_common.cpp file for RV sensor
Change-Id: I8c246a45b5ea99a4ae46837115842b3fe1240d40
Ramasamy [Fri, 2 Jan 2015 05:16:09 +0000 (10:46 +0530)]
Adding Makelist support for virtual sensor configuration
- Added xml configuration support for CMakelist
- Updated spec file for virtual sensor xml
Change-Id: I8b9be20f0f3d4ae728a172237640454e4880de36
Ramasamy [Fri, 2 Jan 2015 04:43:05 +0000 (10:13 +0530)]
Adding lock in virtual sensor layer for sensor fusion library
- Adding mutex lock in virtual sensor layer to restrict usage and
access to sensor fusion library.
- adding lock for event driven and polling based calls
Change-Id: I2202d046544de4d8474606179a516a5e38b77548
Ramasamy [Fri, 2 Jan 2015 04:23:28 +0000 (09:53 +0530)]
Updating virtual sensor xml configuration for multiple devices
- Updated virtual sensor xml configuration file to support
multiple devices and emulators
- Updated virtual sensor xml parser to support additional
functionality
Change-Id: I647958a6010e7ecebfc282ba72bf61ac6706d5cf
Ramasamy [Fri, 2 Jan 2015 04:05:02 +0000 (09:35 +0530)]
Adding Rotation Vector virtual sensor
- Added 9-axis rotation vector based on sensor fusion
- Added xml configuration support for virtual sensor
- Added xml configuration for loading rotation vector library
- Updated build and spec files
Change-Id: I540b277019aa9a946e267b89c39a15e168dbe9f0
Ramasamy [Fri, 2 Jan 2015 03:35:11 +0000 (09:05 +0530)]
Updating linear acceleration range in get_properties
- Updating the min_range and max_range values in get_properties to
to shown according to accelerometer range.
- cleanup
Change-Id: I2f2c68b8e29aad658d1cea1eed8ef7fc3bd0a2c4
Ramasamy [Fri, 2 Jan 2015 03:20:16 +0000 (08:50 +0530)]
Fix for orientation values being set to Nan
- Fixing issue where low floating point values are rounded of to
zero.
- indexing issue.
- Cleanup
Change-Id: Ief4a37395b50f8946bf1d622c0895a881c3a7619
Ankur [Wed, 24 Dec 2014 12:07:22 +0000 (17:37 +0530)]
Removed compiler warning - comparison between signed and unsigned integers
-The signed variables were positive the whole time. So, converted them from ssize_t to size_t
Change-Id: I743cd86f864ac22820951302679f2889e42e11b9
Ankur [Wed, 24 Dec 2014 12:04:20 +0000 (17:34 +0530)]
Removed compiler warning - pointer of type 'void *' used in arithmetic
-The void * pointer was being directly used in the calculation without type cast.
-Tested after change. Seems to work fine.
Change-Id: I483f946d870b3b5b1415139dbd0f442796b18059
Ankur [Wed, 24 Dec 2014 12:01:20 +0000 (17:31 +0530)]
Removed compiler warning - dereferencing type-punned pointer will break strict-aliasing rules
-Tested the change. Works fine.
Change-Id: Ib2dfbd9fb67fe1c634df84ef833953db471fbd74
Ankur [Tue, 23 Dec 2014 13:22:50 +0000 (18:52 +0530)]
Removed compiler warning - Comparison between signed and unsigned integers
-In client.cpp, the variable was an index for 'for' loop, and was always positive, so can be changed on unsigned.
-In sensor_plugin_loader.cpp, the variable was intialized with a variable which was unsigned int, and later was right shifted
which will remain positive, so can be changed to unsigned int
Change-Id: I9efeea4c4a90186378eefbe24f76eb945ae9a3db
Ankur [Tue, 23 Dec 2014 10:06:40 +0000 (15:36 +0530)]
Removed warning - use of deprecated function
-The function g_type_init() has been deprecated in glib from version 2.36. So no need to call this for version 2.36 and above.
-There is a macro for the glib version called - GLIB_VERSION_2_36 (2_36 can be replaced by the version number)
-So, used this macro to check if the glib version is old or new and based on that function call should be placed.
Change-Id: I291c32825ade29375b46df4ba2cef3a3fc13503e
Ankur [Tue, 23 Dec 2014 08:51:37 +0000 (14:21 +0530)]
Removed compiler warning - implicit declaration of a function
-Needed to include #include <string.h> before using the string functions.
-Already submitted a similar change.
-Some of the files here, which were showing warning, were already fixed.
But, seems some other change has removed the #include <string.h>. So, I am resubmitting it.
-Remaining files - earlier string functions were not being used.
Change-Id: I8d1c98de81ee39308343f42034c414501e60d653
Ankur [Tue, 23 Dec 2014 07:08:48 +0000 (12:38 +0530)]
Removed compiler warning - ignoring return value
-Warning related to return value of asprintf() being ignored.
- asprintf returns -1 if failed. Added an if statement to check if the asprintf has failed or not.
Change-Id: I35a80554dd730e1722b975e488335910fd330d56
Kibak Yoon [Mon, 22 Dec 2014 12:55:49 +0000 (04:55 -0800)]
Merge "Adding polling based support for testing proximity sensor" into tizen
Kibak Yoon [Mon, 22 Dec 2014 12:49:27 +0000 (04:49 -0800)]
Merge "Adding polling based support for testing gyroscope sensor" into tizen
Kibak Yoon [Mon, 22 Dec 2014 12:49:15 +0000 (04:49 -0800)]
Merge "Adding polling based support for testing of light sensor" into tizen
Vibhor Gaur [Mon, 22 Dec 2014 12:45:52 +0000 (18:15 +0530)]
Adding polling based support for testing proximity sensor
Change-Id: I0a5c82eb75a615348a348f56bf9254bc0d4f17c9
Vibhor Gaur [Mon, 22 Dec 2014 12:34:12 +0000 (18:04 +0530)]
Adding polling based support for testing of light sensor
Change-Id: Iab85d66ad648a2ecd5669938b448728ddfe898c7
Vibhor Gaur [Mon, 22 Dec 2014 12:20:40 +0000 (17:50 +0530)]
Adding polling based support for testing pressure sensor
Change-Id: I843b060db3f28a76cbac33c7deebb701055e8681
Vibhor Gaur [Mon, 22 Dec 2014 12:09:15 +0000 (17:39 +0530)]
Adding polling based support for testing gyroscope sensor
Change-Id: Ibff596783a3d5c69f8fedc284df2f46cea144315
Kibak Yoon [Mon, 22 Dec 2014 12:06:26 +0000 (04:06 -0800)]
Merge "Removed warnings related to unused variables" into tizen
Ankur [Mon, 22 Dec 2014 12:05:34 +0000 (17:35 +0530)]
Removed warnings related to unused variables
-Removed two unused variables. Both variables were never being intialised or being assigned or being used anywhere in the code.
The variables were just declared. Safe to remove such variables.
Change-Id: I998a1c0c2978d48150c1b15e9b0cc083e430c73a
Vibhor Gaur [Mon, 22 Dec 2014 11:58:25 +0000 (17:28 +0530)]
Adding polling based support for testing accelerometer
Change-Id: Id1a4343e8ad9ca44d9bb5a1027526ed50f88b6e2
Ramasamy [Mon, 22 Dec 2014 05:39:57 +0000 (11:09 +0530)]
Fixing 64 bit compiler issue for sensor_data class
Removed constructor default initialization for timestamp in
sensor_data class.sensor_data class is used only in sensor
fusion scenario. Since Sensor Fusion requires that timestamp
is always initialized in virtual sensors, timestamp
initialization in sensor_data class can be removed.
Change-Id: Ic2b4e96f6c0bcdcab53697a5f681e914b5fea5f9
Kibak Yoon [Mon, 22 Dec 2014 11:38:08 +0000 (03:38 -0800)]
Merge "Adding orientation filter to support quaternion output" into tizen
Kibak Yoon [Mon, 22 Dec 2014 11:37:54 +0000 (03:37 -0800)]
Merge "Removed compiler warning for converting bool 'false' to pointer 'void *'" into tizen
Kibak Yoon [Mon, 22 Dec 2014 11:29:09 +0000 (03:29 -0800)]
Merge "Adding polling based support for testing of temperature sensor" into tizen
Kibak Yoon [Mon, 22 Dec 2014 11:28:41 +0000 (03:28 -0800)]
Merge "Removed warnings related to comparison between signed and unsigned int" into tizen
Kibak Yoon [Mon, 22 Dec 2014 11:28:23 +0000 (03:28 -0800)]
Merge "Removed compiler warnings related to unused variable" into tizen
Kibak Yoon [Mon, 22 Dec 2014 11:25:49 +0000 (03:25 -0800)]
Merge "Completed adding html documentation for sensor fusion" into tizen
Kibak Yoon [Mon, 22 Dec 2014 11:24:24 +0000 (03:24 -0800)]
Merge "Adding description for Measurement update system" into tizen
Kibak Yoon [Mon, 22 Dec 2014 11:20:43 +0000 (03:20 -0800)]
Merge "Removed warnings related to unintialized variables" into tizen
Kibak Yoon [Mon, 22 Dec 2014 11:20:26 +0000 (03:20 -0800)]
Merge "Added missing function call" into tizen
Kibak Yoon [Mon, 22 Dec 2014 11:20:12 +0000 (03:20 -0800)]
Merge "Removed missing parantheses warning" into tizen
Kibak Yoon [Mon, 22 Dec 2014 11:19:47 +0000 (03:19 -0800)]
Merge "Fixed implicit declaration warnings" into tizen
Ankur [Mon, 22 Dec 2014 11:07:30 +0000 (16:37 +0530)]
Removed compiler warning for converting bool 'false' to pointer 'void *'
-In the function sensor_get_sensor() in src/libsensord/client.cpp boolean 'false' was being converted to void *
This was showing as a warning at compile time. For returning failed cases, NULL should be returned.
The call to sensor_info_to_sensor in this function also returns NULL when failed.
-Tested the code after change. Seems to be working fine.
Change-Id: Id100370c9bc8b9f62c86acb6968f766b10370d7b
Ramasamy [Mon, 22 Dec 2014 10:16:46 +0000 (15:46 +0530)]
Adding orientation filter to support quaternion output
- orientation_filter would output device orientation as quaternion
to support rotation_vector virtual sensor.
Change-Id: I5e0cdcb1b218c59d32965deac76629f04c728899
Ankur [Mon, 22 Dec 2014 09:42:25 +0000 (15:12 +0530)]
Removed warnings related to comparison between signed and unsigned int
-converted int variables to unsinged int to remove warnings for comparison between signed and unsigned integers.
Change-Id: I3e0187d002b19b215a5d542d1206ba51ef663368
Vibhor Gaur [Mon, 22 Dec 2014 09:02:22 +0000 (14:32 +0530)]
Adding polling based support for testing of temperature sensor
Change-Id: I3ff0750bd160c3259062a4f91542b69947597b53
Ankur [Mon, 22 Dec 2014 08:51:48 +0000 (14:21 +0530)]
Removed compiler warnings related to unused variable
-changed the variable (MS_TO_US) declaration to a macro as done in other files
this removes the warning in csensor_event_listener.cpp regarding unused variable.
-similarly, based on this, changed all occurrences of (MIN_DELIVERY_DIFF_FACTOR) from variable declaration to macro
this removes the warning in csensor_event_listener.cpp regarding unused variable.
Change-Id: I98708ed5eca0d84dd959d5a59ad865f5381c0b26
Ramasamy [Mon, 22 Dec 2014 03:57:20 +0000 (09:27 +0530)]
Completed adding html documentation for sensor fusion
Added all sections for sensor fusion html documentation.
Change-Id: Ibb50bad292c6056b6dd8d37b80ca0a8dda88ae74
Ramasamy [Fri, 19 Dec 2014 05:41:18 +0000 (11:11 +0530)]
Adding description for Measurement update system
Adding description for the sensor fusion measurement update system
in html documentation.
Change-Id: I7dc24f7940cfb8d607313fe9b3cd405abf1666e2
Kibak Yoon [Fri, 19 Dec 2014 01:47:24 +0000 (17:47 -0800)]
Merge "Fixed Intialization Warnings" into tizen
Ankur [Thu, 18 Dec 2014 14:28:08 +0000 (19:58 +0530)]
Removed missing parantheses warning
-Added missing parantheses arounf an assignment in a condition.
-Removed Missing Parantheses Warning.
Change-Id: Ib7814ef31a911896e868b11cfc057284573bee7a
Ankur [Thu, 18 Dec 2014 14:14:49 +0000 (19:44 +0530)]
Added missing function call
- Missing Function call to sf_stop() in one of the test cases - linear_acceleration.c
- Also, it was leading to a warning about use before intialization warning.
Change-Id: Ic0df7b6334945ac62048fee9ddcdb32fdf0fcba9
Ankur [Thu, 18 Dec 2014 13:58:45 +0000 (19:28 +0530)]
Removed warnings related to unintialized variables
-Warnings related to variables being used without initialization. Intialized the variables.
Actually, the variables were not beng used without initialization but the cases where the variables are being used are mutually exclusive.
So, varaibles have to be intialized to some intial value to remove the warning.
Change-Id: I4041e9d3256c40acb8cdbebbc810275123601603
Ankur [Thu, 18 Dec 2014 13:24:40 +0000 (18:54 +0530)]
Fixed implicit declaration warnings
-Fixed warnings related to implicit delcaration of strcmp() function.
Error: missing #include<string.h> from the files which are using the function strcmp
Change-Id: Ia8c3fec21b7f622543b646063ec9718f5b1cba83
Ankur [Thu, 18 Dec 2014 10:43:02 +0000 (16:13 +0530)]
Fixed Compilation warnings related to Intialization
-Error fixed: Variable was being used before intialization
-Testing will be done once the test cases are completed.
Change-Id: I5316bce003717d97f6e3cd65a909d94e1c84ad0c
Ankur [Wed, 17 Dec 2014 11:11:59 +0000 (16:41 +0530)]
Fixed Intialization Warnings
-Reordered some variable intializations to remove warnings related to order of initializations.
Change-Id: Ibf56efd6f19c11229a18fbe6a613ffcf2b172a16
Ramasamy [Tue, 16 Dec 2014 04:06:57 +0000 (09:36 +0530)]
Adding information for time update system
Adding description for Time update System section in sensor fusion
html documentation.
Change-Id: I94f87c6ccd3f4bfcfc005d37a480e4fd57fb11c8
Ramasamy [Mon, 15 Dec 2014 03:49:38 +0000 (09:19 +0530)]
Adding information for Driving System
Updating documentation for 'Orientation Computation based on driving system'
section in html documentation.
Change-Id: Ibb483e5ba4e658f1710bec934666a7696e5ab92c
Ramasamy [Fri, 12 Dec 2014 10:32:42 +0000 (16:02 +0530)]
Adding information for Aiding system
Added explanation for orientation computation based on aiding system
for sensor fusion html documentation.
Change-Id: I49ced6087a178c8e57e2b39940b148585ddaf67a
Ramasamy [Thu, 11 Dec 2014 04:33:00 +0000 (10:03 +0530)]
Adding explanation for preprocessing sensor data
- Adding explanation for the section on preprocessing sensor data, in html
documentation.
Change-Id: I3c372a56680531b9ef1859ccc5bd6b5d981f3ee0
Kibak Yoon [Tue, 16 Dec 2014 05:51:09 +0000 (21:51 -0800)]
Merge changes Ia892d299,I601ca6fb into tizen
* changes:
Supporting edge conditions during gravity computation
Adding explanation for orientation estimation
Ramasamy [Thu, 11 Dec 2014 03:56:16 +0000 (09:26 +0530)]
Supporting edge conditions during gravity computation
- Adding edge use cases for gravity computation when rotation
happens with pitch or roll at 90 degrees.
Change-Id: Ia892d29964b62bada616e8da23cff5844308a59b
Ramasamy [Tue, 9 Dec 2014 04:11:08 +0000 (09:41 +0530)]
Adding explanation for orientation estimation
Change-Id: I601ca6fb11a146fcf8fb38cfb17cd6bd7f13a2e4
Ramasamy [Fri, 5 Dec 2014 11:44:10 +0000 (17:14 +0530)]
Cleanup of unsupported sensors related code
- Removing code related to motion sensor
- cleanup of code for unused sensors
Change-Id: I8e10ad057ac007cf7576560875cb5072a9efb7df
Kibak Yoon [Mon, 8 Dec 2014 11:10:31 +0000 (03:10 -0800)]
Merge changes I913ae44d,I913ae44d into tizen
* changes:
Adding equations for measurement system, gravity, Linear Accel
Adding document time update related equations
Kibak Yoon [Mon, 8 Dec 2014 11:06:31 +0000 (03:06 -0800)]
Merge "Adding document equations for aiding and driving systems" into tizen
Ramasamy [Fri, 5 Dec 2014 05:15:15 +0000 (10:45 +0530)]
Adding equations for measurement system, gravity, Linear Accel
- Adding equations for measurement update system, gravity
computation and linear acceleration
Change-Id: I913ae44de5fa30ee8c4a90bb5c62a7ff93f0588d
Ramasamy [Thu, 4 Dec 2014 10:03:36 +0000 (15:33 +0530)]
Adding document time update related equations
- Added time update related equations to sensor fusion document.
- cleanup of outdated section and diagram.
Change-Id: I913ae44de5fa30ee8c4a91cc5c62a7ff93f0588d
Ramasamy [Wed, 3 Dec 2014 04:28:05 +0000 (09:58 +0530)]
Adding document equations for aiding and driving systems
- Adding equations for aiding system and driving system
orientation estimation
- changed equation formating
Change-Id: I913ae44de5fa30ee8c4a91aa3a62a7ff93f0588d
Ramasamy [Tue, 2 Dec 2014 08:50:34 +0000 (14:20 +0530)]
Updating preprocessing and aiding system documentation
- Added new equations for preprocessing and aiding system
- Changed formating for documentation.
- Updated diagrams for orientation and gravity.
Change-Id: I913cd22de5fa30ee8c4a91cc7a62a7ff93f0588d
Kibak Yoon [Tue, 2 Dec 2014 08:52:35 +0000 (00:52 -0800)]
Merge "Updating preprocessing and aiding system documentation" into tizen
Kibak Yoon [Thu, 27 Nov 2014 06:41:58 +0000 (22:41 -0800)]
Merge "Configuring proxi test file by removing redundancies and making compatible with IIO interface support" into tizen
Kibak Yoon [Thu, 27 Nov 2014 06:41:09 +0000 (22:41 -0800)]
Merge "Fixing build issues in virtual sensors test files" into tizen
Vibhor Gaur [Wed, 26 Nov 2014 06:33:13 +0000 (12:03 +0530)]
Fixing build issues in virtual sensors test files
Change-Id: Ic009931a0bac60f27cd832e089097c034e5721af
Vibhor Gaur [Tue, 25 Nov 2014 05:50:32 +0000 (11:20 +0530)]
Configuring proxi test file by removing redundancies and making compatible with IIO interface support
Change-Id: I8a38fcad95460b09cb8f78eb07d61f5521b16541
Kibak Yoon [Thu, 27 Nov 2014 06:25:05 +0000 (22:25 -0800)]
Merge "Updating gyroscope test file for compatibility with changes in public code" into tizen
Kibak Yoon [Thu, 27 Nov 2014 06:24:42 +0000 (22:24 -0800)]
Merge "Updating pressure test file for compatibility with changes in public code" into tizen
Kibak Yoon [Thu, 27 Nov 2014 06:24:22 +0000 (22:24 -0800)]
Merge "Configuring geomagnetic test file with changes in public code for IIO interface" into tizen
Kibak Yoon [Thu, 27 Nov 2014 06:23:54 +0000 (22:23 -0800)]
Merge "Updating accelerometer test file for compatibility with changes in public code" into tizen
Vibhor Gaur [Mon, 24 Nov 2014 12:36:16 +0000 (18:06 +0530)]
Updating pressure test file for compatibility with changes in public code
Change-Id: I7f70f6ca7ac5641fc03e6fea9b8f82616e6a875d
Vibhor Gaur [Mon, 24 Nov 2014 12:23:05 +0000 (17:53 +0530)]
Updating gyroscope test file for compatibility with changes in public code
Change-Id: I913ae44de5fa30ee8c4a91cc7a62a7ff93f0588d
Vibhor Gaur [Mon, 24 Nov 2014 12:05:55 +0000 (17:35 +0530)]
Updating accelerometer test file for compatibility with changes in public code
Change-Id: I601ca6fb00d046fcf8fb38cfb17cd6bd7f13a2e4
Vibhor Gaur [Wed, 26 Nov 2014 12:13:43 +0000 (17:43 +0530)]
Configuring geomagnetic test file with changes in public code for IIO interface
Change-Id: I33d93962102b0d69cc8c515fa4d2086d52584115
Ramasamy [Tue, 25 Nov 2014 11:22:01 +0000 (16:52 +0530)]
Adding configuration details for linear accel sensor
- Adding configuration information for linear accel virtual sensor
Change-Id: I9f10ad057ac007cf7576560875cb2572a9efb7df
Ramasamy [Tue, 25 Nov 2014 10:52:18 +0000 (16:22 +0530)]
Adding configuration for gravity virtual sensor
- Adding configuration information for gravity virtual sensor
- Adding diagram for understanding gravity configuration
- Updated orientation sensor diagram to represent correct y-axis
rotation.
Change-Id: I8e10ad057ac007cf7576560875cb2572a9efb7df
Ramasamy [Tue, 25 Nov 2014 09:28:55 +0000 (14:58 +0530)]
Adding diagram to Configuration document
- Adding device orientation diagram
- Formating document for better readability
Change-Id: Ib14b4b95f3ba14b924f0da16683bd1bc077c4ac3
Ramasamy [Tue, 25 Nov 2014 08:12:53 +0000 (13:42 +0530)]
Updating orientation input units support for gravity
- Adding support for input orientation in terms of degrees and
radians during computation of gravity.
Change-Id: Ib14b4b95f3ba98b924f0da16683bd1bc077c4ac3
Ramasamy [Mon, 24 Nov 2014 12:10:44 +0000 (17:40 +0530)]
Adding Virtual Sensor Configuration Information
Adding html document for information on configuring virtual
sensors.
Change-Id: I296dc7be45b201c70d151e7dac2e2b5325d5abd6
Ramasamy [Mon, 24 Nov 2014 08:09:01 +0000 (13:39 +0530)]
Updating the get_properties method
- Updating get_properties method for gravity and linear
acceleration
Change-Id: I296dc7be45b201c55d151e7dac2e2b5325d5abc5
Ramasamy [Mon, 24 Nov 2014 08:01:46 +0000 (13:31 +0530)]
Updating configurability support for Orientation Sensor
- Added support for getting output orientation as both radians and
degrees
- Updating orientation sensor properties
Change-Id: I296dc7be45b201c70d151e7dac2e2b5325d5abc5
Ramasamy [Mon, 24 Nov 2014 07:46:58 +0000 (13:16 +0530)]
Adding cconfig parent class for XML configuration
Adding cconfig parent class for XML configuration
Added cconfig parent class for cvirtual_sensor_config and
csensor_config. Removed config namespace as XML configuration
related code is small to have a separate namespace. Cleanup of
namespace related code. Changed derived class
cvirtual_sensor_config and csensor_config classes code based
on new cconfig parent class
Change-Id: I296dc7be45b201c70d040e7dac2e2b5325d5abc5
Vibhor Gaur [Mon, 24 Nov 2014 06:24:00 +0000 (11:54 +0530)]
Synchronizing temperature sensor plugin with addition of IIO interface support
Change-Id: I8e10ad057ac667cf7576560875cb2572a9efb7df
Kibak Yoon [Mon, 24 Nov 2014 04:17:46 +0000 (20:17 -0800)]
Merge "Updating Linear Acceleration Virtual Sensor Code" into tizen
Kibak Yoon [Mon, 24 Nov 2014 04:17:29 +0000 (20:17 -0800)]
Merge "Updating Gravity Virtual Sensor Code" into tizen
Kibak Yoon [Mon, 24 Nov 2014 04:17:06 +0000 (20:17 -0800)]
Merge "Updating Orientation Virtual Sensor Code" into tizen