summaryrefslogtreecommitdiffstats
path: root/libsensors/ak8975-reg.h
diff options
context:
space:
mode:
authorSimon Shields <keepcalm444@gmail.com>2016-03-05 20:36:08 +1100
committerSimon Shields <keepcalm444@gmail.com>2016-03-05 21:28:19 +1100
commit381a05756bdbe474ab76242a4e2934d81b8975e9 (patch)
treecedb5151d54b8e6bfd5c0cf5e675877f5acb5b78 /libsensors/ak8975-reg.h
parentbe4c4ec36f214eda40301450cd0691d08719852c (diff)
downloaddevice_samsung_i9300-381a05756bdbe474ab76242a4e2934d81b8975e9.zip
device_samsung_i9300-381a05756bdbe474ab76242a4e2934d81b8975e9.tar.gz
device_samsung_i9300-381a05756bdbe474ab76242a4e2934d81b8975e9.tar.bz2
i9300: rewrite libsensors in c++
* based off t0lte sensors * AkmSensor kanged from i9100 (added sensor status support) * has a working compass! Change-Id: Iaed0463c33089ca0b636be4ba3f966f2e25f34f9
Diffstat (limited to 'libsensors/ak8975-reg.h')
-rw-r--r--libsensors/ak8975-reg.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/libsensors/ak8975-reg.h b/libsensors/ak8975-reg.h
deleted file mode 100644
index 1a78a27..0000000
--- a/libsensors/ak8975-reg.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/* linux/drivers/misc/ak8975-reg.h
- *
- * Copyright (c) 2010 Samsung Electronics Co., Ltd.
- * http://www.samsung.com/
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
-*/
-#ifndef __AK8975_REG__
-#define __AK8975_REG__
-
-/* Compass device dependent definition */
-#define AK8975_MODE_SNG_MEASURE 0x01
-#define AK8975_MODE_SELF_TEST 0x08
-#define AK8975_MODE_FUSE_ACCESS 0x0F
-#define AK8975_MODE_POWER_DOWN 0x00
-
-/* Rx buffer size. i.e ST,TMPS,H1X,H1Y,H1Z*/
-#define SENSOR_DATA_SIZE 8
-
-/* Read/Write buffer size.*/
-#define RWBUF_SIZE 16
-
-/* AK8975 register address */
-#define AK8975_REG_WIA 0x00
-#define AK8975_REG_INFO 0x01
-#define AK8975_REG_ST1 0x02
-#define AK8975_REG_HXL 0x03
-#define AK8975_REG_HXH 0x04
-#define AK8975_REG_HYL 0x05
-#define AK8975_REG_HYH 0x06
-#define AK8975_REG_HZL 0x07
-#define AK8975_REG_HZH 0x08
-#define AK8975_REG_ST2 0x09
-#define AK8975_REG_CNTL 0x0A
-#define AK8975_REG_RSV 0x0B
-#define AK8975_REG_ASTC 0x0C
-#define AK8975_REG_TS1 0x0D
-#define AK8975_REG_TS2 0x0E
-#define AK8975_REG_I2CDIS 0x0F
-
-/* AK8975 fuse-rom address */
-#define AK8975_FUSE_ASAX 0x10
-#define AK8975_FUSE_ASAY 0x11
-#define AK8975_FUSE_ASAZ 0x12
-
-#endif /* __AK8975_REG__ */