| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Change-Id: I715cbce3f4387bb557a9ddd2ec23deebc1b1d7ec
|
|
|
|
| |
Change-Id: I198c0eafcd6b554c826b3c0814be6955301835e4
|
|
|
|
|
|
|
|
| |
Even though we changed the signature of the set_delay() methods,
we can still get an overflow while actually writing the values to sysfs.
Let's adapt sysfs_value_read() and sysfs_value_write() too.
Change-Id: If8eda7204831f0edabec890d4e3127be520fa3bf
|
|
|
|
| |
Change-Id: I492e1974e0e1a1c0e70467e30190908909b60451
|
|
|
|
| |
Change-Id: I6e059f68f4d1c7ef82762443af14a1230b12b2f6
|
|
|
|
| |
Change-Id: I75ddc2b53e7bcf9e9cc904d549fb72aa8438a238
|
|
|
|
| |
Change-Id: Iff77015e69e68c87b058d97b04449a508087f33b
|
|
|
|
| |
Change-Id: I7218ef0bf6ff0630bce24f42b95cf3a9e85c20cf
|
|
|
|
|
|
| |
Samsung's RIL doesn't support this, but doesn't error on it either.
Change-Id: I5a470c55fecf85183e9c7b4b37aef3b3cbffaf90
|
|
|
|
| |
Change-Id: Id4fb54e855c817ce9460e2583168776c6a9ea612
|
|
|
|
| |
Change-Id: Ifa1f39c78c8b4fb96ab3024a4f7cdb3cc9d732bd
|
|
|
|
|
|
| |
one does not simply exec a shell script
Change-Id: I538f28b2ccd80b39fd6e84dedcb2554a215c94ea
|
|
|
|
|
|
|
|
|
| |
GPS fixes taken from grouper:
https://github.com/CyanogenMod/android_device_asus_grouper/commit/9651b24fb481bf0fc1db3b1d700033cf66eb067e
and
https://github.com/CyanogenMod/android_device_asus_grouper/commit/f5592571d581478622f0fc3f86fbbddf20cf89c7
Change-Id: I7ec658691c65c3b6c087ee41ba69f2cb37ade525
|
|
|
|
|
|
|
| |
open source camera is better in every possible way.
This also doesn't build anymore.
Change-Id: If1048b8df45679adc5bdf357dd13f1b3e6365dcb
|
|
|
|
|
|
| |
fixes phone crashes when the call is disconnected from the other end
Change-Id: If6211af2d62ce9a6ee6879b67ae473b9fb9083d2
|
|
|
|
|
|
| |
fixes RIL
Change-Id: I9d4b83f245976b7cbb68aca315c54878e51f1356
|
|
|
|
| |
Change-Id: I139186d5b408779c05827e0d66f21b1071f7dd2c
|
|
|
|
| |
Change-Id: I88a7d92b4831ff61e7507c65db66ccd6d71c81fc
|
|
|
|
|
|
|
|
| |
currently you need to cherry-pick this:
http://review.cyanogenmod.org/#/c/120540/
to boot.
Change-Id: Ibf6f85db7235a5c09010bcedc57642f91f278d29
|
|
|
|
| |
Change-Id: I3dbb887bd1356a3198a4b4da5aadf95b64920e55
|
|
|
|
|
|
|
| |
Conflicts:
rootdir/init.target.rc
Change-Id: I97dd09c7ebbfda242d8e8b3e140a2597c14c36f9
|
|
|
|
|
|
|
|
|
|
|
|
| |
gps.xml removal of values that cause segfualt
init.rc addition of required data folders and init of gps-daemon (gpsd->glgps)
Set preset values
gps.h header removed as non-samsung blobs
Conflicts:
include/hardware/gps.h
Change-Id: I9e07d8a507b5669987480a4ecae4f7697685e1f4
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Using a strict basetype only coding style is not a good idea
especially when we are dealing with callbacks which use portable
typedef like int64_t. This kind of coding style would most likely
end up in overflows at various places especially when dealing with
timestamps and sensor delays which are caused when typecasting
datatypes of different size.
Switch to portable typedefs and get rid of "long".
Change-Id: I75b9cace7602345dba9095f046292e6d4db07df4
|
|
|
|
| |
Change-Id: I7cad5c048c1a9877889216ca8ca43bb13daeb4b0
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The Orientation Sensor is deprecated and no longer required.
Additionally this implementation is never even used, since Android
automatically replaces it by it's own implementation if the sensor HAL
doesn't also provide a Rotation Vector sensor. Furthermore the current
implementation only uses the accelerometer and magnetometer for the
sensor fusion and doesn't make use of the Gyroscope. So should we at
some point decide to implement our own complete sensor fusion this
would have to be rewritten anyway.
Change-Id: I45d8a9afd2089b49131e6cc69cdf2f3dfee46c92
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Actually this fixes several more problems, but the compass orientation
is the most noticeable symptom of this:
Android expects sensor event timestamps in nanoseconds. Linux timestamps
on the other hand are saved in the timeval struct in seconds and micro-
seconds. Therefore these need to be converted, which is easy enough and
is implemented in input.c of libsensors. Unfortunately, the current
implementation uses type long int for the return value and all further
calculations. Since the nanosecond values easily exceed 2^32 the buffers
overflow and wrap, which results in the reported timestamps moving between
-2^16 and 2^16. The consequences of this are noticeable especially with
fused sensors integrating the gyroscope readings, which use the difference
of two timestamps to calculate the change in orientation by multiplying it
by the rotation rate. When the buffer wraps around this results in a huge
time difference and thus leads to a momentary orientation change every
~4.3 seconds.
This commit fixes this behavior by using long long int.
Change-Id: Ib47bdc36ece16371c82f61b125315074ec048e32
|
|
|
|
|
|
| |
also fix a typo
Change-Id: I69246a96c53d7ec02ca90d73bc85dec4cbc73343
|
|
|
|
| |
Change-Id: I81ff71c8ae6bf25c1aabac4a6d8d6fcf64bd2e0b
|
|
|
|
| |
Change-Id: Iee501b65c23bed22bfe769496bafc852f939a8ac
|
|
|
|
| |
Change-Id: I3dd56f4d7fb0de8feca2422c165fe0c3cd92761a
|
|
|
|
|
|
|
|
|
| |
This reverts commit 9f7182d0542f4c82b6fe4722b8b9389021ad6ae9.
Let's not mess with the magnetometer sensitivity adjustments.
The magnetometer orientations are correct as is.
Change-Id: I218578088c43a27f4ff89d8c9e1671641725817a
|
|
|
|
|
|
| |
- Orientation sensor still broken
Change-Id: I7d20afbbc1f8b1ca5d046a38c0c3b7ce824c12cd
|
|
|
|
| |
Change-Id: I3c5cd29a497d2a84da7742b8fdf54bf4e0869cee
|
|
|
|
|
|
|
| |
Conflicts:
camera/CameraWrapper.cpp
Change-Id: Ic33d9a91629cf04e99c6e316e4871489f9f45924
|
|
|
|
|
|
|
| |
Conflicts:
BoardConfig.mk
Change-Id: I5794d6c3fb2e2ca542fc0eff65317334be9047b7
|
|
|
|
| |
Change-Id: I554de271021b595b27620135189f4dc61f604170
|
|
|
|
| |
Change-Id: Ie8f657544212a70a2ce0c7fb61d050d87f6247f6
|
|
|
|
| |
Change-Id: I537df0d39ceddfabb5e0a859398d5068f6860faa
|
|
|
|
|
|
|
| |
We have only one analog source and one speaker,
do not use right (mute) channel for AIF2
Change-Id: I65780e0d022263976712e79a70bf217bf1b988eb
|
|
|
|
| |
Change-Id: I037aace6fae22c8635332bc5888663ac8c9e3851
|
|
|
|
| |
Change-Id: Iebfe3b797e3f44de1c6527111105122ed871f1c8
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Framework was responsible for enabling or disabling the
noise suppression using audio parameters. However, this is
currently broken in lollipop and most of the newer devices
have noise suppression enabled by default.
Use noise suppression when using the default
input device (main microphone).
Conflicts:
audio/audio_hw.c
overlay/packages/services/Telephony/res/values/config.xml
Change-Id: Ie8bdfe1d9860fdad996640d1664e8111df7d3cec
|
|
|
|
| |
Change-Id: I8593343012faf5b528df03cc9ed098bf44b66888
|
|
|
|
| |
Change-Id: Iccb763b48a687b88692c84976a7cddf72031b5be
|
|
|
|
|
|
|
|
| |
* Lower the main and sub mic gain to prevent distortion.
* Increase the headset mic gain
* Enable +30db boost for headset mic
Change-Id: If5a3605b8742fc125d36d2b11e9c2bb15f089f92
|
|
|
|
| |
Change-Id: Ie28205afda03280d9cc6437a7c98f7b995fd4f50
|
|
|
|
| |
Change-Id: I25cab57acb84a14200006e832a43676ff3c8b9d0
|
|
|
|
| |
Change-Id: I5b76be2d7d5d9754974295fce81b26498ccee391
|
|
|
|
|
|
|
|
|
|
| |
AAPT ignores densities in PRODUCT_AAPT_CONFIG.
The use of PRODUCT_AAPT_PREF_CONFIG for density is
encouraged, as AAPT is able to determine the fallback
density to use if a resource of the specified density
does not exist.
Change-Id: I38ed9cc72108c290a3f74c4bbc08ae37a56efa4f
|
|
|
|
| |
Change-Id: Ica5b5c3035c6e5ff2756564fa3d894ba8a6d24bd
|