[TWEAKS] Collection *Updated 2/28/2012* - LG Revolution

PLEASE READ ENTIRE POST BEFORE TRYING ANY OF THESE TWEAKS!!!
This post is kind of a mash-up from 2 or more other posts here at XDA that I thought would be helpful to have here. The first ones will be Build.prop tweaks and some 3G tweaks. After that will be some 4G tweaks.
Before you do anything like this, make sure you rename your original build.prop file to "build.prop.bak" just in case.
Original Threads Can Be Found Here:
http://forum.xda-developers.com/showthread.php?t=1227269
Can't find the other thread now but will post link as soon as I can find it.
Many of these build.prop tweaks are already implemented. So you might not need them all. If you do not have some of these lines already in your build.prop file, all you need to do is add them at the bottom of your build.prop.
Highlighted in red, is what you need to change if it is not already set to this.
Build.prop Tweaks:
Force launcher into memory:
Code:
ro.HOME_APP_ADJ=[COLOR="Red"]1[/COLOR]
Raise jpg quality to 100%:
Code:
ro.media.enc.jpeg.quality=[COLOR="Red"]100[/COLOR]
Render UI with GPU:
Code:
debug.sf.hw=[COLOR="Red"]1[/COLOR]
Decrease dialing out delay:
Code:
ro.telephony.call_ring.delay=[COLOR="Red"]0[/COLOR]
Improve scrolling responsiveness:
Code:
windowsmgr.max_events_per_sec=[COLOR="Red"]150[/COLOR]
Save some battery life:
Code:
wifi.supplicant_scan_interval=[COLOR="Red"]180[/COLOR]
pm.sleep_mode=[COLOR="Red"]1[/COLOR]
ro.ril.disable.power.collapse=[COLOR="Red"]0[/COLOR]
Disable USB Debugging notification icon:
Code:
persist.adb.notify=[COLOR="Red"]0[/COLOR]
Increase overall touch responsiveness:
Code:
debug.performance.tuning=[COLOR="Red"]1[/COLOR]
video.accelerate.hw=[COLOR="Red"]1[/COLOR]
Raise photo and video recording quality:
Code:
ro.media.dec.jpeg.memcap=[COLOR="Red"]8000000[/COLOR]
ro.media.enc.hprof.vid.bps=[COLOR="Red"]8000000[/COLOR]
3G Tweaks:
Code:
ro.ril.hsxpa=[COLOR="Red"]2[/COLOR]
ro.ril.gprsclass=[COLOR="Red"]10[/COLOR]
ro.ril.hep=[COLOR="Red"]1[/COLOR]
ro.ril.enable.dtm=[COLOR="Red"]1[/COLOR]
ro.ril.hsdpa.category=[COLOR="Red"]10[/COLOR]
ro.ril.enable.a53=[COLOR="Red"]1[/COLOR]
ro.ril.enable.3g.prefix=[COLOR="Red"]1[/COLOR]
ro.ril.htcmaskw1.bitmask=[COLOR="Red"]4294967295[/COLOR]
ro.ril.htcmaskw1=[COLOR="Red"]14449[/COLOR]
ro.ril.hsupa.category=[COLOR="Red"]5[/COLOR]
Net speed tweaks:
Code:
net.tcp.buffersize.default=[COLOR="Red"]4096,87380,256960,4096,16384,256960[/COLOR]
net.tcp.buffersize.wifi=[COLOR="Red"]4096,87380,256960,4096,16384,256960[/COLOR]
net.tcp.buffersize.umts=[COLOR="Red"]4096,87380,256960,4096,16384,256960[/COLOR]
net.tcp.buffersize.gprs=[COLOR="Red"]4096,87380,256960,4096,16384,256960[/COLOR]
net.tcp.buffersize.edge=[COLOR="Red"]4096,87380,256960,4096,16384,256960[/COLOR]
Disable blackscreen issue after a call:
Code:
ro.lge.proximity.delay=[COLOR="Red"]25[/COLOR]
mot.proximity.delay=[COLOR="Red"]25[/COLOR]
Fix some application issues (fc's):
Code:
ro.kernel.android.checkjni=[COLOR="Red"]0[/COLOR]
Phone will not wake up from hitting the volume rocker:
Code:
ro.config.hwfeature_wakeupkey=[COLOR="Red"]0[/COLOR]
Change this value to "1" to enable it.
Force button lights on when screen is on:
Code:
ro.mot.buttonlight.timeout=[COLOR="Red"]0[/COLOR]
Disable bootanimation for faster boot-up time:
Code:
debug.sf.nobootanimation=[COLOR="Red"]1[/COLOR]
Specific to SOME lg devices:
Code:
persist.service.pcsync.enable=[COLOR="Red"]0[/COLOR]
persist.service.lgospd.enable=[COLOR="Red"]0[/COLOR]
user.feature.flex=[COLOR="Red"]true[/COLOR]
user.feature.lgdrm=[COLOR="Red"]false[/COLOR]
user.feature.lgresource=[COLOR="Red"]false[/COLOR]
user.feature.lgpoweroff=[COLOR="Red"]false[/COLOR]
user.feature.ls_event=[COLOR="Red"]false[/COLOR]
user.feature.ls_normal=[COLOR="Red"]false[/COLOR]
user.feature.sui=[COLOR="Red"]false[/COLOR]
GPS.config
(create or edit your /system/etc/gps.conf with a file manager with root access)
For improving GPS lock time and signal.
Code:
NTP_SERVER=america.pool.ntp.org
XTRA_SERVER_1=http://xtra1.gpsonextra.net/xtra.bin
XTRA_SERVER_2=http://xtra2.gpsonextra.net/xtra.bin
XTRA_SERVER_3=http://xtra3.gpsonextra.net/xtra.bin
SE supl for A-GPS (better than Google's)
Code:
SUPL_HOST=supl.sonyericsson.com
SUPL_PORT=7275
Other Various Tweaks
Use Google's DNS servers:
Create an empty file, name it resolv.conf and put there these 2 lines:
Code:
nameserver 8.8.8.8
nameserver 8.8.4.4
Save to /system/etc/.
New Tweaks Added 2/28/2012
Stream Videos Faster:
Code:
media.stagefright.enable-player=true
media.stagefright.enable-meta=true
media.stagefright.enable-scan=true
media.stagefright.enable-http=true
media.stagefright.enable-record=false
Make phone ring faster when dialing out:
Code:
ro.telephony.call_ring.delay=800
Reduce RAM usage by approx. 15% at startup:
Code:
dalvik.vm.startheapsize=4m
Internet Speed Tweaks:
Code:
echo "0" > /proc/sys/net/ipv4/tcp_timestamps;
echo "1" > /proc/sys/net/ipv4/tcp_tw_reuse;
echo "1" > /proc/sys/net/ipv4/tcp_sack;
echo "1" > /proc/sys/net/ipv4/tcp_tw_recycle;
echo "1" > /proc/sys/net/ipv4/tcp_window_scaling;
echo "5" > /proc/sys/net/ipv4/tcp_keepalive_probes;
echo "30" > /proc/sys/net/ipv4/tcp_keepalive_intvl;
echo "30" > /proc/sys/net/ipv4/tcp_fin_timeout;
echo "404480" > /proc/sys/net/core/wmem_max;
echo "404480" > /proc/sys/net/core/rmem_max;
echo "256960" > /proc/sys/net/core/rmem_default;
echo "256960" > /proc/sys/net/core/wmem_default;
echo "4096,16384,404480" > /proc/sys/net/ipv4/tcp_wmem;
echo "4096,87380,404480" > /proc/sys/net/ipv4/tcp_rmem;
Hope all this helps some of you!! Just a warning, if you ask questions, I might not be able to answer it. Just wanted to let you know!!

Awesome!
Just dialed the ##3282# (didn't think it would work) but it does send you a couple of free texts with your current usage (txt and data) for the current billing cycle
From My Bryce Device

KaneOfMars said:
Awesome!
Just dialed the ##3282# (didn't think it would work) but it does send you a couple of free texts with your current usage (txt and data) for the current billing cycle
From My Bryce Device
Click to expand...
Click to collapse
So it didn't work at all?

KaneOfMars said:
Awesome!
Just dialed the ##3282# (didn't think it would work) but it does send you a couple of free texts with your current usage (txt and data) for the current billing cycle
From My Bryce Device
Click to expand...
Click to collapse
#3282 does that...? (#Data)
Sent from my Galaxy Nexus using Tapatalk

Once in your preferred terminal program (connecbot, terminal emulator, etc.) type the following EXACTLY:
getprop ril.MSL
It should display your MSL
I did this and it accepted the command but nothing was displayed.

slow162 said:
Once in your preferred terminal program (connecbot, terminal emulator, etc.) type the following EXACTLY:
getprop ril.MSL
It should display your MSL
I did this and it accepted the command but nothing was displayed.
Click to expand...
Click to collapse
Yeah I'm going to delete that stuff because it doesn't work with the Revolution. However, there is a set of 3G tweaks posted earlier on in the OP that seems to work. Gave me at least 1 extra bar on 3G.

Some of these are already in GingerVolt.
Sent from my ADR6425LVW using xda premium

mtmichaelson said:
Some of these are already in GingerVolt.
Sent from my ADR6425LVW using xda premium
Click to expand...
Click to collapse
Says that in the OP silly!
Sent from my GingerFusion Revo using Tapatalk.

spc_hicks09 said:
Says that in the OP silly!
Sent from my GingerFusion Revo using Tapatalk.
Click to expand...
Click to collapse
Lol, teach me to slow down my reading! Thanks SPC! Haven't seen you on IRC lately! I guess you are on early while I'm at work.
Sent from my ADR6425LVW using xda premium

mtmichaelson said:
Lol, teach me to slow down my reading! Thanks SPC! Haven't seen you on IRC lately! I guess you are on early while I'm at work.
Sent from my ADR6425LVW using xda premium
Click to expand...
Click to collapse
Lol no problem! Yeah I'm usually on early but my moms in the hospital again so I probably won't be on for a few days. I'll be there though!
Sent from my GingerFusion Revo using Tapatalk.

spc_hicks09 said:
Lol no problem! Yeah I'm usually on early but my moms in the hospital again so I probably won't be on for a few days. I'll be there though!
Sent from my GingerFusion Revo using Tapatalk.
Click to expand...
Click to collapse
Oh man, sorry to hear about your mom! Hope everything is ok.
Sent from my ADR6425LVW using xda premium

Do you know a tweak to change the I/O scheduler? I can't use blitz but I want to change it from cfq to noop
Blitz GingerVolt

revo_65 said:
Do you know a tweak to change the I/O scheduler? I can't use blitz but I want to change it from cfq to noop
Blitz GingerVolt
Click to expand...
Click to collapse
You can use the SuperCharger script for that I think.
Sent from my GingerFusion Revo using Tapatalk.

spc_hicks09 said:
You can use the SuperCharger script for that I think.
Sent from my GingerFusion Revo using Tapatalk.
Click to expand...
Click to collapse
Yea its in the KAK tweaks but I flashed GV again and I'm going to not use KAK and see if that fixes some issues. There are some CPU apps that do it but not the one I use and I think they will interfere with each other if I run more than one at a time.
Blitz GingerVolt

revo_65 said:
Yea its in the KAK tweaks but I flashed GV again and I'm going to not use KAK and see if that fixes some issues. There are some CPU apps that do it but not the one I use and I think they will interfere with each other if I run more than one at a time.
Blitz GingerVolt
Click to expand...
Click to collapse
Cool, thanks for confirming!

Thanks a lot for doing this. Great work.

Grizzy3 said:
Thanks a lot for doing this. Great work.
Click to expand...
Click to collapse
Very welcome!
Sent from my GingerFusion Revo using Tapatalk.

Wat does the 3g tweak actually do??
lg revo 2.3.4 with gingervolt 1.3 and gingerfusion 3.8

flaminfury said:
Wat does the 3g tweak actually do??
lg revo 2.3.4 with gingervolt 1.3 and gingerfusion 3.8
Click to expand...
Click to collapse
It improves 3G connectivity. However, I've been told that it will only work if the phone is in CDMA mode only.

spc_hicks09 said:
It improves 3G connectivity. However, I've been told that it will only work if the phone is in CDMA mode only.
Click to expand...
Click to collapse
So by connectivity do u mean faster speeds for downloads and stuff??
lg revo 2.3.4 with gingervolt 1.3 and gingerfusion 3.8

Related

[KERNEL][16 DEC] GLaDOS for ICS

I put together a test version of GLaDOS which works with kwiboo's ICS port.
Download: http://www.multiupload.com/BA2GQ1VNMC
Sources: https://github.com/Ezekeel/GLaDOS-nexus-s/tree/glados + https://github.com/CyanogenMod/samsung-kernel-crespo/tree/ics
I tested it a bit and it seems something is keeping the DEEP IDLE state with TOP=OFF from being used; instead TOP=ON is used. So I guess this is a problem with GPS, BT or the vibrator. Will look into it tomorrow.
Update #1:
The problem is that BT is not properly disabled in the kernel when switched off. I have removed the check for BT in DEEP IDLE for now, so one can test the TOP=OFF state. If you need BT disabled DEEP IDLE or use the previous version.
Download: http://www.multiupload.com/FTH2DUN0M8
Update #2:
Since Koush's ICS ROM seems to be faster and more stable, his development is more transparent and he updates his kernel git in a timely fashion, I have decided to drop the official support for kwiboo's ROM and only support Koush's ROM in future updates. The kernel still might work with kwiboo's ROM though.
I have reenabled the check for BT in DEEP IDLE, so the TOP=ON will be used instead of the TOP=OFF state. I have informed Koush about the issue - maybe he can find the change in the ROM that causes this.
Download: http://www.multiupload.com/FUDAQY4AYT
Update #3:
Added OC frequency states 1.4GHz and 1.2GHz.
Download: http://www.multiupload.com/H5ARZNK691
Update #4:
Added latest kernel patches for ICS alpha 9. These seem to break adb.
If you do not need BT and want the DEEP IDLE state with TOP=OFF to be properly used, you can switch BT off manually with 'echo 1 > /sys/devices/platform/bt_rfkill/rfkill/rfkill0/soft'. This will break the BT switch and you will need to reboot if you want to use BT.
Download: http://www.multiupload.com/HDVWPGM43Q
Update #5:
Fixed adb and tethering (one needs to enable CONFIG_USB_G_ANDROID in .config). Mass storage is still not working though.
Also to get adb working, I had to edit my /etc/udev/rules.d/11-android.rules on my Linux machine from
Code:
SUBSYSTEMS=="usb", ATTRS{idVendor}=="18d1", ATTRS{idProduct}=="4e21", MODE="0666", OWNER="azrael" #Normal nexus s
SUBSYSTEMS=="usb", ATTRS{idVendor}=="18d1", ATTRS{idProduct}=="4e22", MODE="0666", OWNER="azrael" #Debug & Recovery nexus s
SUBSYSTEMS=="usb", ATTRS{idVendor}=="18d1", ATTRS{idProduct}=="4e20", MODE="0666", OWNER="azrael" #Fastboot nexus s
to
Code:
SUBSYSTEMS=="usb", ATTRS{idVendor}=="18d1", MODE="0666", OWNER="azrael" #Normal nexus s
SUBSYSTEMS=="usb", ATTRS{idVendor}=="18d1", MODE="0666", OWNER="azrael" #Debug & Recovery nexus s
SUBSYSTEMS=="usb", ATTRS{idVendor}=="18d1", MODE="0666", OWNER="azrael" #Fastboot nexus s
My guess is the Nexus S reported with a wrong idProduct (that of the Nexus Prime?).
Download: http://www.multiupload.com/LIILVGO0XH
Update #6:
Updates for Koush's alpha 11.
Mass storage now works (under Windows 7, but not on my Linux machine; probably a problem with Linux).
Download: http://www.multiupload.com/VYK8J1LG20
Update #7:
Turns out I was an idiot and did upload the wrong zip file. Here is the correct one. Sorry.
Also I forgot to mention that the last update adds init.d support. Thanks to Flo for that.
Download: http://www.multiupload.com/5AHEB0DJQ5
Update #8:
Added support for data usage limits (thanks Franco for sending me his .config).
Download: http://www.multiupload.com/DCIP6G25R6
Update #9:
Added DRAM scaling to Live OC.
Flash memory I/O tweaks.
Added Tiny Preemptive RCU.
Updated the optimized CRC32 algorithm.
Removed CFQ I/O scheduler.
Download: http://www.multiupload.com/9Z86UNGP4L
Update #10:
Added Bigmem option (increases RAM available for the system by 26MB).
Download: http://www.multiupload.com/2Z7D4WPXRP
Update #11:
Improved Bigmem option (increases available RAM by 27.5MB now).
Download: http://www.multiupload.com/5HOQB8LS3X
Ezekeel said:
I put together a test version of GLaDOS which works with kwiboo's ICS port.
Download: http://www.multiupload.com/BA2GQ1VNMC
Sources: Tomorrow, need to sleep now.
I tested it a bit and it seems something is keeping the DEEP IDLE state with TOP=OFF from being used; instead TOP=ON is used. So I guess this is a problem with GPS, BT or the vibrator. Will look into it tomorrow.
Click to expand...
Click to collapse
Nice! Downloading now
Ezekeel said:
I put together a test version of GLaDOS which works with kwiboo's ICS port.
Download: http://www.multiupload.com/BA2GQ1VNMC
Sources: Tomorrow, need to sleep now.
I tested it a bit and it seems something is keeping the DEEP IDLE state with TOP=OFF from being used; instead TOP=ON is used. So I guess this is a problem with GPS, BT or the vibrator. Will look into it tomorrow.
Click to expand...
Click to collapse
mhhuuu .. downloading ... do you need something spezial to test with it?
beamed in from my Nexus S on Oxygen using my brain
Awesome......DL'ing now. Will report soon....NS4G
Edit---- booted fine. Voodoo works on colors. Haven't tried sound yet. Nstools gives me access to bln, bld, touchwake, live oc and deep idle. bld works. Haven't tried bln, touchwake, live oc. Can't report on deep idle yet. Not overclockable with setcpu. But able to use lazy governor. Also able to adjust voltages. THANK YOU!!
Edit2----never used live oc before or glados......just read up on live oc and figured out how to oc........
Long days and pleasant nights............
Thank you sir. Had a feeling this was coming when you were digging at him earlier
Sent from my neXus s 4G
I'm going to try it now. You don't waste any time do you?
Sent from my Nexus S using xda premium
This is what we call a master! Thanks a lot for this release
Sent from my Nexus S using Tapatalk
Market says Nstools isn't compatible with my device, need n apk.
Sent from my Nexus S 4G using Tapatalk
batting1000 said:
Market says Nstools isn't compatible with my device, need n apk.
Sent from my Nexus S 4G using Tapatalk
Click to expand...
Click to collapse
If you have a backup you can pull it with titanium. Or app extractor.
Sent from my Nexus S using Tapatalk
One word. Beautiful.
Sent from my Nexus S using XDA App
[email protected] said:
If you have a backup you can pull it with titanium. Or app extractor.
Sent from my Nexus S using Tapatalk
Click to expand...
Click to collapse
Don't have a backup with it.
Sent from my Nexus S 4G using Tapatalk
seems to use just "high speed"
beamed in from my Nexus S on Oxygen using my brain
batting1000 said:
Market says Nstools isn't compatible with my device, need n apk.
Sent from my Nexus S 4G using Tapatalk
Click to expand...
Click to collapse
? Not sure why......working here
Long days and pleasant nights............
Long days and pleasant nights............
Just flashed it and it works great. Live OC works as well as voodoo color. Thanks!
When it boot I got a message "Android is upgrading, optimizing application x of 114". Is that just building caches for everything?
Works here too. How are you at 1100?
Sent from my neXus s 4G
Voodoo color works also although the colors reset on reboot. This actually makes this ICS port enjoyable.
Sent from my neXus s 4G
FL0OD said:
Works here too. How are you at 1100?
Sent from my neXus s 4G
Click to expand...
Click to collapse
Fine at 1100 and 1200 but reboot at 1300. Only tried once.
Anyone got an apk of nstools 1.6????
Sent from my Nexus S 4G using Tapatalk
FL0OD said:
Works here too. How are you at 1100?
Sent from my neXus s 4G
Click to expand...
Click to collapse
ok, working now, wiped dalvik again ...
live_oc at 110 ... thats why i'm on 1100
beamed in from my Nexus S on Oxygen using my brain

I got a good one for ya...

Ok here's the specs
Gingervolt 1.3
Latest Blitz kernal (kernalizer in supercharge script applied)
Supercharged
Couple tweaks from the tweaks collection in dev. Forums
ickangwich latest version theme
CPU set by rom toolbox to 1401 max
460 min
On smartass2 gov.
And the problem...
Quite often i will be enjoying the hell out of my revo, then it happens. An unresponsive screen. I have to turn the screen off in order to fix it. Which really sucks when right in the middle of a epic cartoon wars battle... and really frustrated me writing this... PLEASE SEND HELP!!!
Sent from my VS910 4G using Tapatalk
kcarden said:
Ok here's the specs
Gingervolt 1.3
Latest Blitz kernal (kernalizer in supercharge script applied)
Supercharged
Couple tweaks from the tweaks collection in dev. Forums
ickangwich latest version theme
CPU set by rom toolbox to 1401 max
460 min
On smartass2 gov.
And the problem...
Quite often i will be enjoying the hell out of my revo, then it happens. An unresponsive screen. I have to turn the screen off in order to fix it. Which really sucks when right in the middle of a epic cartoon wars battle... and really frustrated me writing this... PLEASE SEND HELP!!!
Sent from my VS910 4G using Tapatalk
Click to expand...
Click to collapse
Which tweaks did you use and what option do you have set on the Supercharger? You could try lowering the Min too. Take it down to 250 and see how that does. If the doesn't work you can try overclocking more or dropping it lower than 1.4gHz.
Sent from my Volted Ice Revo using Tapatalk.
I think it is a problem with gingerbread. Mine does that and I'm only on my theme.
Sent from my VS910 4G using Tapatalk
Mine will do it also
spc_hicks09 said:
Which tweaks did you use and what option do you have set on the Supercharger? You could try lowering the Min too. Take it down to 250 and see how that does. If the doesn't work you can try overclocking more or dropping it lower than 1.4gHz.
Sent from my Volted Ice Revo using Tapatalk.
Click to expand...
Click to collapse
Here's what the last few lines of my build.prop looks like
ro.config.hwfeature_wakeupkey=0
ro.ril.hsxpa=2
ro.ril.gprsclass=10
ro.ril.hep=1
ro.ril.enable.dtm=1
ro.ril.hsdpa.category=10
ro.ril.enable.a53=1
ro.ril.enable.3g.prefix=1
debug.sf.nobootanimation=1
ro.ril.htcmaskw1.bitmask=4294967295
ro.ril.htcmaskw1=14449
ro.ril.hsupa.category=5
net.tcp.buffersize.default=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.wifi=4096,87380,256960,4096,16384,256960 net.tcp.buffersize.umts=4096,87380,256960,4096,16384,256960net.tcp.buffersize.gprs=4096,87380,256960,4096,16384,256960 net.tcp.buffersize.edge=4096,87380,256960,4096,16384,256960
Supercharger is the most aggressive 512hp settin
Sent from my VS910 4G using Tapatalk
I don't think it has anything to do with any tweaks mine does it when running a stock deodexed ROM. Basically the screen freezes Arnd you turn it off and turn it back on and unlock it and it works again.
Sent from my VS910 4G using xda premium
indyred99 said:
I think it is a problem with gingerbread. Mine does that and I'm only on my theme.
Sent from my VS910 4G using Tapatalk
Click to expand...
Click to collapse
Yeah I believe it's a gingerbread issue. It happened to me on stock gingerbread.
Sent from my VS910 4G using XDA App
Happens to me too. several times a day.
Sent from my VS910 4G using xda premium
Mr Frog said:
Yeah I believe it's a gingerbread issue. It happened to me on stock gingerbread.
Sent from my VS910 4G using XDA App
Click to expand...
Click to collapse
So there's absolutely nothing we can do about it? That's awesome... i just love lg!
Sent from my VS910 4G using Tapatalk
try using option 5 in supercharger instead of 7, also check for redundancies in build.prop etc. (a friend had 4 entries of kak & SC in favorites and in build.prop) if you've ever updated the script. If its the same that mt burned into gv 1.3 you should be ok in that regard, however if you've ever installed other scripts/appkiller apps and so forth that affect kernal or memory settings you could be having conflicts. But to be honest I've had the screen freeze when it was stock and unrooted. I still have them but pretty rarely anymore.
Sent from my VS910 4G using XDA App
This was happening with lg/Stock v7 pretty sure nothing can be done except lock then unlock screen
sent from my V6 Supercharged LG Revo BlueVolt
Lies!!! Thanks hicks for the advice. Changed min to 250. Now instead of freezing where i have to lock/unlock, it simply lags a little. But its real quick to catch up.
Sent from my VS910 4G using Tapatalk
kcarden said:
Lies!!! Thanks hicks for the advice. Changed min to 250. Now instead of freezing where i have to lock/unlock, it simply lags a little. But its real quick to catch up.
Sent from my VS910 4G using Tapatalk
Click to expand...
Click to collapse
Glad you got it working a little better now! You say it still lags though? What do you have the max set at for it now?
spc_hicks09 said:
Glad you got it working a little better now! You say it still lags though? What do you have the max set at for it now?
Click to expand...
Click to collapse
i kept the max at 1.4... so far its pretty stable.. hasnt done it in a couple days but the lag is only in the keyboard. like i'll type something and i think it froze again, but a second after it catches back up with what im typing. it hasnt froze yet since i set it there so maybe it worked?
It happened to me when I changed my CPU settings.
I would get random locks at 1.5GHz on Smoothass. Changed it down to betwee 1.2-1.4 and haven't seen it yet.
You can try reflashing Blitz

CM S-pen writing hand

Hi all,
I've been missing the s-pen writing hand setting since stock-samsung-gb-days...
I've finally found the setting for CM9 & 10 (possibly AOSP/AOKP/MIUI/..., this needs to be checked)
If some dev with far greater abilities than I could write an interface for it, possibly get it merged into gerrit in the cm9 galaxy note settings app
In terminal, as root, type:
echo "0" > /sys/class/sec/sec_epen/epen_hand (For lefthanded setting)
echo "1" > /sys/class/sec/sec_epen/epen_hand (For righthanded setting)
The change is effective instantly, and stays until next reboot;
I have added the command in a script (/data/local/userinit.sh), so the setting is set after each reboot.
Have fun :highfive:
60 views, and no replies... am I the only lefty on the forum?
Confirmed also for CM10!
Inf3rn0.nl said:
60 views, and no replies... am I the only lefty on the forum?
Confirmed also for CM10!
Click to expand...
Click to collapse
No, and I can't tell you how happy I was to read your post.
I tried using touchscreentune and it only kinda worked.
I don't think there are many of us, though.
- Frank
not working on parandroid jb
it says can't create /sys/class/sec/sec_epen/epen_hand,permission denied
landmoon said:
not working on parandroid jb
it says can't create /sys/class/sec/sec_epen/epen_hand,permission denied
Click to expand...
Click to collapse
You need root permissions. i.e. running 'su' in terminal monitor.
Genius! I've been rotating my phone upside down.
I also added it to userinit.sh, it's easy since vi is installed by default in CM10.
Thank you so much for this! I have been waiting for a replacement for touchscreentune. Now PA is perfect.
Sent from my GT-N7000 using xda premium
Noooooo
biXPt said:
Thank you so much for this! I have been waiting for a replacement for touchscreentune. Now PA is perfect.
Sent from my GT-N7000 using xda premium
Click to expand...
Click to collapse
I was so happy to find this. I love CM but lack of calibration keeps me away. But, alas, I am running a att note and get an error, "no such file or directory"....
---------- Post added at 02:02 AM ---------- Previous post was at 01:59 AM ----------
awe215 said:
I was so happy to find this. I love CM but lack of calibration keeps me away. But, alas, I am running a att note and get an error, "no such file or directory"....
Click to expand...
Click to collapse
Scrap that, it woooooooooooorks. It woooooooooooooooooooooooorks.
I just can't believe it. CM9 with proper lefty support!
YES!
nice find, also the option has been in miui for quite so time..
finally! i'm left handed and using spen with righty hand on cm pissed me off..
This is the reason why i didn't use CM because of S-Pen.
Sent from Galaxy Note using Tapatalk 2
Outstanding. Thanks. Works on my note.
Sent from my SAMSUNG-SGH-I717 using Tapatalk 2
Great work.
I was looking for this for a long time
Works also on cm10 - P A 2.1.
Attached userinit.sh file to copy to /data/local/
thanks!
dont exist s-pen in CM? any alternative¿
Excuse me but i just dont understand this command functionality on cm based roms.. Could you tell me what is the use of this? Thanks
Sent from my GT-N7000 using xda premium
Typical s-pen has offset prepared for right hand= you can't use it with left hand because o huge offset.
When you type command from first post, offset will be mirrored, so it will be good for lefties
Thanks!
Sent from my GT-N7000 using xda premium
kielichwina said:
Works also on cm10 - P A 2.1.
Attached userinit.sh file to copy to /data/local/
Click to expand...
Click to collapse
The commandline works on LiquidSmooth JB RC 3 (with HydraCore 4.3b)
But I've placed the userinit.sh file in /data/local/ and that doesn't seem to have any effect...
Am I doing something wrong, or is this kernel or rom related?

[GROUP DEV] Powersaving CM10

Working on a way to make the battery life on our cm10 builds last longer, It's definitley not as good as our motorola builds. Thought I'd make this for the people who don't need the best performance for games, and for people who use they're phone lightly (instagram & texting only) and need better battery.
What we could do...
Build.prop mods
CM Kernel mods
Anything else? Feel free to share below, lets get this rom working 100% and tailored to peoples uses.
Ways to save battery​-Delete system apps that I don't use... (less apps running in background.)
Code:
[COLOR="Red"]I removed: Video Editor; Currents; CM FileManager; Cyanogenmod Themes; Theme manager; CM FileManager Themes; Livewallpaperchooser; Livewallpapers.[/COLOR]
-Add the following props to "build.prop" for better battery and faster charging.
Code:
persist.sys.shutdown.mode=hibernate
persist.radio.add_power_save=1
wifi.supplicant_scan_interval=180
ro.ril.disable.power.collapse=1
ro.config.hw_quickpoweron=true
ro.mot.eri.losalert.delay=1000
ro.config.hw_power_saving=1
pm.sleep_mode=1
ro.config.hw_power_saving=true
persist.sys.purgeable_assets=1
# V6 SuperCharger, OOM Grouping & Priority Fixes created by zeppelinrox.
# DO NOT DELETE COMMENTS. DELETING COMMENTS WILL BREAK UNINSTALL ROUTINE!
# BEGIN OOM_MEM_Settings
ro.FOREGROUND_APP_MEM=2560
ro.VISIBLE_APP_MEM=3840
ro.PERCEPTIBLE_APP_MEM=5120
ro.HEAVY_WEIGHT_APP_MEM=7680
ro.SECONDARY_SERVER_MEM=8960
ro.BACKUP_APP_MEM=12800
ro.HOME_APP_MEM=6400
ro.HIDDEN_APP_MEM=15360
ro.CONTENT_PROVIDER_MEM=20480
ro.EMPTY_APP_MEM=25600
# END OOM_MEM_Settings
# BEGIN OOM_ADJ_Settings
ro.FOREGROUND_APP_ADJ=0
ro.VISIBLE_APP_ADJ=1
ro.PERCEPTIBLE_APP_ADJ=2
ro.HEAVY_WEIGHT_APP_ADJ=4
ro.SECONDARY_SERVER_ADJ=5
ro.BACKUP_APP_ADJ=6
ro.HOME_APP_ADJ=3
ro.HIDDEN_APP_MIN_ADJ=7
ro.EMPTY_APP_ADJ=15
# END OOM_ADJ_Settings
# End of V6 SuperCharged Entries
Note: I have not tested "Supercharger" with the atrix hd.
I don't know what your talking about, I personally think battery life on CM is a lot better than the Motorola 4.1
Sent from my XT925 using xda app-developers app
Battery life seems same or better to me. Also deleting system apps like a wallpaper picker or a file manager don't make much sense, they are not always running in background. Use greenify app to hibernate whatever apps are running.
Sent from my Atrix HD MAXX using Tapatalk 2
Well I'm Not in CM10 but I'm getting good And better life compared to Stock Motorola JB
Sent from my Golden'd Atrix HD MAXX using xda app-developers app
Same, used to last me to like 9pm or 10pm (no maxx battery) this cm10 ROM for my dd is no comparison
Sent from my MB886 using xda app-developers app
Since this is a small issue for certain I'm going to put it in the general section.
Sent from my MB886 using xda app-developers app
If you could provide minimum and maximum frequencies available for the kernels you have, I've got a script I can change up to work for the AHD that'll definitely increase screen on time.
Sent from my RootBox LG-E970
384-1512mhz thanks, it would be great. I don't really know my way around kernel development, but I've been reading cad threads for kernel dev noobs.
Sent from my MB886 using xda app-developers app
This is a zip of 3 scripts to use with SManager. 1 for balance, 1 for pure battery saving (laggy) and 1 for performance. All of them scale the CPU a lot better than what normally goes on with Android. I personally prefer the balanced one but to each his own. Don't change CPU settings after applying the script or it'll void out. Let me know how it works! Also, this will work with ANY 384MHz - 1,512MHz kernel that supports the conservative governor. Not just CM.
Edit:
3 new scripts that will work with any kernel / device as long as they support the conservative governor.
https://www.box.com/s/sbmmj2nwxtt4ftrk7jhd
Hit thanks if this helps you!
Be sure to thank Yannis100 over here as well for the original script. http://forum.xda-developers.com/showthread.php?t=2089149&nocache=1

App to change vibration strength on G watch R (LeeDrOiD R Urbane Port)

hey, i did an app for changing your vibration strength. It works on LeeDrOiD's R Urbane Port.
You can change the /sys/class/timed_output/vibrator/amp and the /sys/class/timed_output/vibrator/driving_ms file with it.
The max amounts you can set are the max amounts suggested by tonu42 in his "Useful Mods for R" Thread. Thank you for this.
There are buttons to disable vibration and to set it back to default.
It is my first android app. If anyone is interested, here it is:
EDIT: Updated to version 2 which is more userfriendly.
EDIT2: A version with an AMP and MS max value of 500. Dont use this, when you dont know what you are doing. You might set too high values with this.
You need to install the APK via "ADB install captncal.vibrationsettings.apk"
Uninstall it via "ADB uninstall captncal.vibrationsettings"
Use at your own risk. It probably wont work if your watch isnt rooted.
Feedback appreciated.
Anyone tested this without root? Can't test it myself now...
updated to v2
Not to dishonor your work, but the app advanced settings has this option too. for the non rooted users...
jabberwock said:
Not to dishonor your work, but the app advanced settings has this option too. for the non rooted users...
Click to expand...
Click to collapse
can you give the link?
Sent from my SM-N910F using xda premium
kendragon said:
can you give the link?
Sent from my SM-N910F using xda premium
Click to expand...
Click to collapse
First hit in playstore:
https://play.google.com/store/apps/details?id=com.sssemil.advancedsettings
thx. works for me ... but: it does not do much. i definitely need to amp it over 100.
(the mentioned app above only incerases ms, yours amps too, but not enough!)
dionys0s said:
i definitely need to amp it over 100.
Click to expand...
Click to collapse
did change the max values for you. but be careful.:good:
jabberwock said:
Not to dishonor your work, but the app advanced settings has this option too. for the non rooted users...
Click to expand...
Click to collapse
I think vib intensity change requires root privileges...

Categories

Resources