[How To] Increase Performance on the Touchpad - WebOS Software Development

All credits to the original author. I'm just sharing what I found.
Instructions: (by James Kendrick at ZDNET)
Extracted Quote:
Open the Phone and Video Calls app in the Apps tab on the launcher screen. Once in the app select the DialPad tab and enter the following in the dialer like you would on a phone:
##LOGS# (##5647#)
Hit the green Dial button.
On the subsequent Collect Logs screen, select Change Logging Levels
Hit the Set Logging To Minimal and confirm
Your TouchPad just got a lot more responsive as HP took the tech support approach to log virtually everything behind the scenes to make debugging things easier should things go wrong. There is so much event logging in the background that it seriously impacts the TouchPad’s performance, as it is constantly doing things it doesn’t need to do. The setting you just changed reduces the amount of logging that is going on.
______________________________________________________________
NOTE: You can further enhance the performance on the Touchpad by installing a few patches on Preware. Instructions to install Preware [Here]:

Thanks, I correctly-clocked* my touchpad to 1.5GHz and made some other small tweaks, and it is always hard to tell for sure but changing the excessive logging seems to have made a perceptible improvement
*I don't want to say OC because 1.5 is the suggested speed, HP was just trying to save some power. I don't want to scare off people who typically don't overclock (like me) because the 1.5 clock speed really is worthwhile and as safe a mod as they get.

I didn't realize that some of this tweaks are mentioned in the OC thread under the General section. . I'm not a fan of over clocking unless I really have to. I find that after these tweaks acceptable in terms of performance as compared to the performance out of the box.

Here's a good guide I wrote up: http://briefmobile.com/speed-up-the-hp-touchpad
Basically walks you through patches and overclock. Really smooth after all that is done.

Posting for the trail. Thanks for this.

I installed the 1.5 overclocking method, and I went to get my touchpad off of the touchstone and it was very very hot. Removed the uberkernel and it was fine. Any ideas?
Sent from my PG86100 using xda premium

I don't see the "DialPad tab". What could be wrong?
xxxman999 said:
All credits to the original author. I'm just sharing what I found.
Instructions: (by James Kendrick at ZDNET)
Extracted Quote:
Open the Phone and Video Calls app in the Apps tab on the launcher screen. Once in the app select the DialPad tab and enter the following in the dialer like you would on a phone:
##LOGS# (##5647#)
Hit the green Dial button.
On the subsequent Collect Logs screen, select Change Logging Levels
Hit the Set Logging To Minimal and confirm
Your TouchPad just got a lot more responsive as HP took the tech support approach to log virtually everything behind the scenes to make debugging things easier should things go wrong. There is so much event logging in the background that it seriously impacts the TouchPad’s performance, as it is constantly doing things it doesn’t need to do. The setting you just changed reduces the amount of logging that is going on.
______________________________________________________________
NOTE: You can further enhance the performance on the Touchpad by installing a few patches on Preware. Instructions to install Preware [Here]:
Click to expand...
Click to collapse

kennethpenn said:
Here's a good guide I wrote up: http://briefmobile.com/speed-up-the-hp-touchpad
Basically walks you through patches and overclock. Really smooth after all that is done.
Click to expand...
Click to collapse
zard said:
I don't see the "DialPad tab". What could be wrong?
Click to expand...
Click to collapse
Done all of the above except the missing "DialPad tab", so I couldn't change to minimal logging. I've the 32GB model.
BTW, your instructions there has an error on the dev code mode, the numbers provided is wrong. It should be 20060909 instead of 20090606. Confirmed from the image provided.

You wont see a dial pad until you have either connected the tablet to a phone via bluetooth, or logged into skype.
Fon22

zard said:
Done all of the above except the missing "DialPad tab", so I couldn't change to minimal logging. I've the 32GB model.
Click to expand...
Click to collapse
Just go to device info > custom application then type ##LOGS#
Sent from my HTC Eva 4G using Tapatalk

FYI, some folks (myself included as of this morning) have unexpectedly starting having an "Unable to download email" error after applying the Muffle System Logging patch. If you search, most folks say you have to do a full reset. However, I just found the following fix that doesn't require a reset:
http://forums.precentral.net/hp-touchpad/297968-solution-email-download-errors-finally.html
I'm hoping this saves others who follow these instructions unnecessary grief.

kennethpenn said:
Here's a good guide I wrote up: http://briefmobile.com/speed-up-the-hp-touchpad
Basically walks you through patches and overclock. Really smooth after all that is done.
Click to expand...
Click to collapse
maybe a stupid question, but which version of java should I be installing? Thanks.
nevermind,I figured it out.

Touchpadplus.com just over clocked my touch pad great step by step directions
Sent from my SCH-I510 using XDA App

Related

[GUIDE] About Android and Optimizing Sony Xperia X10

Since Sony Xperia X10 is now running on 2.1, topics related to 1.6 is not mentioned here.
This thread are created based on compilation of other threads related to optimization, and meant as an entry point for user interested in optimization.
Understanding your Android
Just to put something short, so we can understand our Android and some points related to optimization better.
Android is an open source operating system owned by Google that is maintained by Android Open Source Project (AOSP). The operating system is based on modified Linux kernel, where most of the application is written in Java language and running on DalvikJVM.
Android do things differently than old generation OS like Symbian, and below is the explanation related to performance.
Unlike Symbian, Android designed to have as many as application loaded and running in the OS, it maintain list of least used application that will be unloaded when a requests for more memory is made when the free OS memory is already low.
These are the nature of JVM, where allocation and deallocation of memory is managed by garbage collector as doing things in bulk is faster then working with small chunks. So you don't have to be alarmed when you open a memory viewer application and see your Android is running on low memory. Freeing RAM with task killer is only momentarily, as you uses the phone again, the free memory will goes down again.
Android phones stores system application, data and files internally in NAND flash area and stores user data in internal memory storage or external storage such as SD cards. This memory is different than your operating sytem memory.
Operating system memory is memory allocated for the kernel, native application and most application you download from market. Installing a lot of application will not directly reduce free RAM, nor uninstalling or removing files will increase free RAM directly. Action such as removing ringtones, wallpaper and even Sony PC Companion ISO will not free your RAM
In general there are two type of android application. One is a standalone application that only run if you open the application, and the other one is running even you haven't open the application which called service.
By design, guideline and suggested practice, application should not continue to run lengthy processing when it get pushed to background via home button, back button or switching to other application; properly build application will just go idle. Which means you should be less paranoid about application eating you processing power.
But service is meant to run lengthy operation as they don't have user interface and runs in background. Some service meanth for pushing or pulling data from internet, reading your files and do processing like playing songs, or just doing something then update the widget just to make you happy. Unnecessary services are the things that you should be aiming if you want to optimize your Android.
General FAQ about Optimizing Sony Xperia X10 2.1
I just updated to 2.1 and my phone really feel slower than 1.6
Since you had been using 1.6 for quite some time, your SD card should have quite a lot of photo and media. Just after you updated to 2.1, and add your Google and maybe Facebook account, the new Face Recognition service is actually already starting to scans all your photo, then when your Google and Facebook contact arrived, it will try it best to match photo and contact. This new Face Recognition really kicks hard in your processor, then after a while your phone will be as fast and even better than old stock 1.6.
I still feel that the phone is slow, is there any simple and quick way to optimize
The simple and quick to optimize your phone instantly is by changing the 2.1 dalvikvm to JIT capable dalvikjvm. You can read and apply them by reading the thread referred below, but before you do that open the below link in background tab and please do read more first.
Android 2.1 OPTIMISER V002 by Jerpelea
2.1 Customizer v0.99.1 by ttxdragon
Both optimizer contains script that will erase your "junk/unused" application from your phone, be sure to read them first before executing. My suggestion is you apply JIT modification first, before going optimizing by remove your "junk/unused" application.
Please do remember that you have to Root your X10 first.
How to root the phone
You can root the phone using methods below.
OneClick z4root Android Application
SuperOneClick Windows Application
Is [INSERT APP NAME] here is save to remove?
By removing unused application, you will gain certain amount of performance gain. Below are the links with app list.
2.1 Customizer v0.99.1 by ttxdragon
Official List of Apps that Can be Removed from a 2.1 x10 by exekias
And still a lot more in other Sony Ericsson X10 forum section but those two is quite complete
And in case you forgot to make backup you can go to
2.1 System Apps - In Case You've Deleted Them by XperiaX10iUser
After doing all that my Quadrant Benchmark is still low
You should run Quadrant as least two or three time or until you get best score, the first one usually yield low score, because a lot of memory allocation process to Quadrant happening during the first run.
Tuning Utilities
Memory Usage - Application to see how much memory used by your application and services
Advanced Task Manager - Application to see is your application running on foreground, background or idle and its memory usage
Quadrant Standard - General benchmarking tools to see if your changes make improvement
Linpack - Processor benchmarking
Titanium Backup Pro - Back up application, the paid version can freeze your app rather then uninstalling it.
Fine Tuning Guide
About Widget, Application shortcut and Live Wallpaper
Even though widgets looks really good in your phone, some widgets required simple periodic process for updating its display, some have a full blown service running to support it. A very instant example that you can see in your phone is the Power Control widget and the new Status Switch widget.
Power Control widget update triggered by configuration change such as wifi on and off, while Status Switch widget which have a battery level is triggered by a running service. Just put Status Switch widget then go to Settings -> Application -> Running Services. Then you will see there a Status Switch Update service running in background to update the battery level.
By selectively put widgets on your home screen, you can gain extra processing and memory. Timescape widget is even worse, it have three service running to support it.
Application shortcuts also uses extra memory in your home screen app and your home screen app is usually system persistent, reducing number of shortcut will give extra RAM and reducing the required rendering process during scroll.
Live Wallpaper just as the name said looks really nice and require extra memory and process of course.
Tuning via build.prop
Some value can be added and modified into build to increase the performance of X10.
dalvik.vm.heapsize=32m
This will change the maximum memory size per application. If you decrease the value, smaller application starts faster, but big application like games will prone to crash, if you increase the value too much, smaller application takes longer to start, but big application will extra gain benefit from less garbage collecting.
Reference: Test: How changing the max amount of memory per VM Heap can effect your ROM (Cyanogen)
windowsmgr.max_events_per_sec=60
This will change the maximum number of touch screen gesture events per second, the bigger the value, the smoother the scrolling will be
There still some more build.prop tweaks that you can do, but not all of them will be processed by X10 as each device behave differently.
reservation for more article to go
Nice clean guide, should help newcomers. Good work!
synlar said:
Nice clean guide, should help newcomers. Good work!
Click to expand...
Click to collapse
Thanks, but i am quite depressed after reading it my self and found that i make a lot of typo. Had to revise and revise again.. lol.
Nice piece of work there Xeviro..
Can you post your build.prop please i cant find the windowsmgr.max_events_per_sec=60 one in mine.
Wolfbreak said:
Can you post your build.prop please i cant find the windowsmgr.max_events_per_sec=60 one in mine.
Click to expand...
Click to collapse
That one you add by your self to you build.prop. If you look further in google, there still a lot of other build properties that you can set to Android.
There is another way to add and test build.prop instantly by using adb shell command "setprop key value" and "getprop key". Some property will take effect immediately, some require you to reboot.
How do you prove that the windowsmgr.max_events_per_sec=60 actually works? After applying that I tried input benchmark and it still showed 33hz.
ooidort said:
How do you prove that the windowsmgr.max_events_per_sec=60 actually works? After applying that I tried input benchmark and it still showed 33hz.
Click to expand...
Click to collapse
Ok, i just checked, that for this build.prop property to take effect, you need to reboot the device first. I just test on my, giving 10 and 200 in value. With 10, the input benchmark showing less then 20hz most of the time, while with 200 it gives me 40hz+.
Also you can see if you scroll the app list with 10 and 200 value, you can see the difference.
xeviro said:
Ok, i just checked, that for this build.prop property to take effect, you need to reboot the device first. I just test on my, giving 10 and 200 in value. With 10, the input benchmark showing less then 20hz most of the time, while with 200 it gives me 40hz+.
Also you can see if you scroll the app list with 10 and 200 value, you can see the difference.
Click to expand...
Click to collapse
I definitely notice the difference between 10 and 200, but it still doesn't go above 33hz... Maybe it's the framerate cap doing it's thing?
xeviro said:
Thanks, but i am quite depressed after reading it my self and found that i make a lot of typo. Had to revise and revise again.. lol.
Click to expand...
Click to collapse
Good write up! I was actually going to say something about the typos/errors, because I'm a jerk, but, you noticed them too, so I feel satisfied.
I hope people will read your little intro about RAM and realize a task killer's real purpose is to kill rogue services that kill battery.
xeviro said:
That one you add by your self to you build.prop. If you look further in google, there still a lot of other build properties that you can set to Android.
There is another way to add and test build.prop instantly by using adb shell command "setprop key value" and "getprop key". Some property will take effect immediately, some require you to reboot.
Click to expand...
Click to collapse
But where do i need them to add? At Beginning or at End or Middle?
iead1 said:
Good write up! I was actually going to say something about the typos/errors, because I'm a jerk, but, you noticed them too, so I feel satisfied.
I hope people will read your little intro about RAM and realize a task killer's real purpose is to kill rogue services that kill battery.
Click to expand...
Click to collapse
Please forgive my typo and grammars, i life in country where people simplify their way of communication. I cannot talk proper now. hahaha
Wolfbreak said:
But where do i need them to add? At Beginning or at End or Middle?
Click to expand...
Click to collapse
Anywhere
xeviro said:
Please forgive my typo and grammars, i life in country where people simplify their way of communication. I cannot talk proper now. hahaha
Anywhere
Click to expand...
Click to collapse
If i add this to the end of my build.prop my phone does not accept SIM unlock code anymore .... ??
EDIT: Strange, second time it worked ... btw. what is the default value ?
Ive added dalvik.vm.heapsize=32m to see what diff it will make and well..
wow.. it killed my phone.
It will show sony ericsson on the screen when you turn it on and just stay there!
So yeah... how can i fix this?
It's bricked, you'll need to reflash the software!
:-(
OP- Great thread, thank you!
Post on my Rooted 2.1 X10i using Tapatalk Pro and Swype
Yeah i knida noticed...
fixed now but im not trying that heapsize thing again..
Anyone here have the original/untouched nordic build.prop? I'm really appreciate it if you share it here. ^_^
Sent from my Xperia X10i (2.1 and rooted) using XDA app
Seansmit17 said:
Ive added dalvik.vm.heapsize=32m to see what diff it will make and well..
wow.. it killed my phone.
It will show sony ericsson on the screen when you turn it on and just stay there!
So yeah... how can i fix this?
Click to expand...
Click to collapse
Seansmit17 said:
Yeah i knida noticed...
fixed now but im not trying that heapsize thing again..
Click to expand...
Click to collapse
Its working correctly in my phone, and this heapsize settings is the most common one in android modding. you go check google and see the results.
I also attached build.prop from my phone.

*** Galaxy Tab Master Tweak Thread***

Hi everyone.
Id like to start a thread where we collect, post and discuss all known individual tweaks and changes that can be made to the Galaxy Tab in order to gain performance and stability.
My experience with the Galaxy Tab has been similar to my latest phone, an HTC HD2. When I got the HD2 about one year ago, I positively hated it... slow, unstable, all sorts of problems, lags, crashes... its the way most of the hardware today is released. One year later, my HD2 has become the most amazing machine I've ever owned. From pushing it 1.6GHz stable, to tweaking registry, XML files, services and making everything work well. I remember not being able to watch smooth video on the HD2 to being able to watch flawlessly 720p content and going from the extreme of detesting the phone to loving it.
It was with the HD2 I discovered Android and fell in love with it. Since I have now two HD2s I have one with an SD ROM version of Gingerbread (that I can dual boot still from Windows Mobile) and a Froyo NAND. I run Android on the HD2 much much much faster and smoother than on the Galaxy Tab, that I also hated when I bought it a few weeks and that am starting to like after getting to know it, a new ROM, apps, etc. Even at 1GHz stock the HD2 with Froyo is vastly faster, smoother, more responsive and better to use. The approach d like to do as far as tweaking the Galaxy Tab is the same as I did for the HD2 with Windows Mobile, that is, install the best/fastest ROM I can, delete and remove all stuff I don't need and then tweak what's left.
The tweaks I've done so far on the Galaxy are simple but have made a huge difference. Id like with this thread to be able to collect individual tweaks and post them all here to share with everyone.
Im using Roto JMI Pre-Rooted Firmware v2 which was the main step after getting rid of the stock Samsung Rom that is nothing but a collection of problems.
The first thing I learned with this Tab is that WHATEVER IS ON YOUR HOME SCREENS THAT MOVES, IS BAD! Forget about having ANY type of apps or widgets that do any type of refresh, including stuff running on the upper task bar if they change icons or the move around… that mean a CPU cycle and refresh each time and there goes the tab's performance and battery life. The same goes for any type of Live Wallpaper. Beautiful but deadly. Never touch them!
- So, after a new ROM, the first thing I did was changing the file system to EXT4. This is the SINGLE BEST THING you can do to radically improve the performance of the Tab. Its extremely easy to do and the step-by-step instructions are as follow:
- Make sure you have an miniSD Card in with plenty of available space (it will be used automatically to backup your system during the conversion process)
- Get p1000-mck-r3-ext4-cwm.tar (the EXT4 Conversion Kernel)
- Connect the Tab in Downloading Mode to your PC via USB, start Odin3 1.7 and load the Kernel (click on the PDA button and select the p1000-mck-r3-ext4-cwm.tar and make sure PDA stays ticked after selecting the file).
- UNTICK Re-Partition check box and make sure the only boxes ticked are:
Auto Reboot
F. Reset Time
The PDA tickbox
- Click start and wait for PASS! (it will show highlighted green or Yellow on Odin)
- Now the Tab will restart and get stuck on the Samsung loading screen. This is normal. Turn it off by holding the power button for 5 seconds.
- Turn on the Tab again on into RECOVERY mode (Press Volume UP and Power On at the same time) and the EXT4 conversion will start automatically. The process will take up to one hour depending on how much stuff you have on your Tab. It took about 10 minutes on mine because I have a fresh install of Roto JMI v2.
- Once finished, click "Reboot System Now" (by pressing the power button).
- The reboot may take a while first time so be patient!
- Done!
- After that, the first tweak I did was to get rid of all my favorite widgets that moved around… net meter, news, weather and all these beautiful things KILL the Tab. Equally I had a CPU meter on the tray refreshing every 2 seconds and it took me a while to figure out that was the reason why every 2 seconds the system would stutter, whether watching a movie or browsing the web. So, out!
- Next was to install SetCPU under the ON DEMAND setting, minimum around 750MHz and maximum 1000MHz (unfortunately only with a custom Kernel you can go higher, currently up to 1.4GHz but not full stable and with lots of issues pending so I don’t recommend it)
- My following step was to get rid of the stock Samsung Homescreen (that is a resource hog and slow as hell) and replace it with a new one. I've tried them all and am making no recommendation here but the one that works for me and is by far the best IMO is LauncherPro. This single app makes using the Tab a whole better experience.
- Next was to disable the USELESS and (resource pig) Gallery and replace it with an app called QuickPic that is blazing fast (actually instant) and simply amazing to browse and view all media on the Tab.
- Next was to greatly improve the poor native GPS reception by replacing high performance files and drivers from the Orange Rom P1000JHKA1 that seems to work on all versions of the Tab, as originally posted here:
http://forum.xda-developers.com/showthread.php?t=922692
- With SystemApp Remover 4.12 I have disabled all system apps and services I don’t need (BE VERY CAREFUL AND DON'T REMOVE ROM APPS YOU WILL NEED). I have actually deleted some from ROM (Root access required of course), this includes useless stuff like STK Service starting every time, most of the Samsung stuff that I really don’t care for and just about all apps I know for sure I will never open a single time. Now, its important to understand if these apps are removed they will be removed PERMANENTLY from ROM so to get the back a hard reset will not be enough, you'll have to fully flash the ROM again. For most system apps I don’t use but am not sure, I use a different option and that is to simply disable them. In my case this includes all Bluetooth stuff (I never use it and even if it's off the Services are still running robbing performance and memory) and apps like the built-in Browser, Email and Messaging that suck and that I replaced with better apps. Its always a safer bet, at least initially to disable the apps you don’t need that uninstall them because at least you can go back and change your mind This is one area where Id like to learn more. There are many background services that I don’t know what they do and if they can be disabled or not. If someone knows what each one does and the safety of getting rid of them OR NOT, it would be great to post it here!
- Them, with Startup Auditor 2.3.2 I have disabled all unnecessary apps that start automatically every time the Tab boots so I don't have excess applications starting up that are not needed. Some I configured to be killed AGAIN if the system tries to restart them later after the boot-up
- Using Task Manager 1.0.7 and letting always run on background, I have configured all apps that I don’t need running to be auto-killed every time the phone goes to stand-by (screen off). This saves me lots of memory and CPU time on apps that I am actually not using.
- Finally, I monitor what is going on with an app called CPU Usage Timeliness Free 1.7.1.0 and use it to see EXACTLY which applications are using CPU cycles and interfering with performance. With it I have found that on my Tab I have an unsolved problem that is using over 100MB of memory and non-stop CPU usage between 15% and 45% of something called SECURITY STORAGE. I have no idea what it does. It can't be disabled and I don’t know where all the activity comes from. If someone know more about this and how to fix it, that will be great. Most of the performance issues I have on my Tab come from this Service that I don’t know how to tame. Surely, we can find a solution.
The system background services is one area where I'd like to know one by one, what each service does and if we need them or not, if it can be tweaked, disabled or deleted. Below is a complete list of the services I have safely disabled so far that have given me great performance boosts and with no negative issues on the system (IN BOLD), and OTHERS I WOULD LIKE TO KNOW MORE ABOUT (not bold). Please note these are background services that start automatically. The changes made to the disabled apps/services is that they are reverted to ON-DEMAND so they all still work perfectly.
CALENDAR
CALENDAR STORAGE
COM. SEC.ANDROID.PROVIDERS.DOWNLOADS
CSC
DOWNLOAD MANAGER
DRM CONTENT
EMAIL
GALLERY
GOOGLE PARTNER SETUP
GOOGLE SERVICES FRAMEWORK
MARKET
MEDIA STORAGE
MESSAGING
MUSIC
SAMSUNG ACCOUNT
SERVICE MODE
SNS
WIPEOUT RECEIVER
WORLD CLOCK
Furthermore I uninstalled several of the Samsung Apps I don’t use and STK Service and disabled these system Apps I don’t use (YOU SHOULD CHOOSE THE ONES YOU WANT TO ENABLE OR DISABLE AS YOU MIGHT HAVE DIFFERENT NEEDS):
All Bluetooth Services
All LiveWallpapers Services
Browser
CarHomeGoogle
CarHomeLauncher
Google Feedback
Screen Capture Service
Voice Search
Originally with my Tab I was getting Quadrant below 600 on average. Now, its always over 1900. This is not a "little" improvement, this is amazing upgrading. But id like this to be a starting point to learn and share more ways with everyone we can all share on things we can do to make the Tab as good as it was intended to be for everyone
Cheers!
1.4 oc is stable, and doesn't have any issues for alot of users.
all the things you disabled are all the things i use every day lol
never the less, good post, im going to use a couple apps you mentioned.
natious said:
1.4 oc is stable, and doesn't have any issues for alot of users.
all the things you disabled are all the things i use every day lol
never the less, good post, im going to use a couple apps you mentioned.
Click to expand...
Click to collapse
The first block of disabled items (in bold) from CALENDAR to WORLD CLOCK are disabled start-ups but the apps works as usual. It just frees resources not required on boot till you actually start the application when you want.
The second block from Bluetooth Services to Voice Search are all disabled as I use none of those. Items disabled can be restarted again at any time upon activating them follwing a reboot, while items deleted (like Samsung Apps and STK) are gone forever.
Ive never flashed a ModaCo Kernel and got lots of feedback regarding probelms with 1.4OC. Do you have any issues at all or none? We are using different ROMs... What Quadrant do you get currently?
Cheers
Thank you for your post.
You have solved many of my questions. Also I am User of HD2 and had the same impressions, but now with Android Nand everything was great, also started to love it.
As for GTAB'll make those adjustments you suggested, some will not disable because I use Bluetooth as an example.
Any news please keep posting.
Success!
VeEuzUKY said:
The first block of disabled items (in bold) from CALENDAR to WORLD CLOCK are disabled start-ups but the apps works as usual. It just frees resources not required on boot till you actually start the application when you want.
The second block from Bluetooth Services to Voice Search are all disabled as I use none of those. Items disabled can be restarted again at any time upon activating them follwing a reboot, while items deleted (like Samsung Apps and STK) are gone forever.
Ive never flashed a ModaCo Kernel and got lots of feedback regarding probelms with 1.4OC. Do you have any issues at all or none? We are using different ROMs... What Quadrant do you get currently?
Cheers
Click to expand...
Click to collapse
So far the oc is good, things load a little faster, especially nfs shift. Last run of quadrant was 2300-2400.
Ill try it again later after these optimizations and see how it goes, a member here has gotten 3000.
Having done nothing but root, my tab gets about 1000 quadrant score. I have tried setcpu using on demand and it actuall has made my tab worse. I am very hesitant to flash anything on the tab. It seems very involved and complicated. I have an HD2 as well and have been flashing since Android was on SD. That process is simple. Everything I have read about flashing things to the tab doesn't look that way. I really havent had any issues with my tab as stock other than a bit laggy at times. I would like to hear more about all of this. The oppinions I have read are either do it or don't do it. There are more problem posts after attempting to flash than there are good ones where it worked. I really could care less about a quadrant score to be honest, but I would like to have a faster smoother running tab. I really dont care about making calls on it either. Thats why I have a phone. JMO. I think part of the issue in this thread is that there are Euro and USA version which are completely different and require different roms and such.
I have been reading and lurking in the tab development thread for a while now and am not impressed with any of it yet. Maybe someone could shed some light on things and change my mind.
dubie76 said:
Having done nothing but root, my tab gets about 1000 quadrant score. I have tried setcpu using on demand and it actuall has made my tab worse. I am very hesitant to flash anything on the tab. It seems very involved and complicated. I have an HD2 as well and have been flashing since Android was on SD. That process is simple. Everything I have read about flashing things to the tab doesn't look that way. I really havent had any issues with my tab as stock other than a bit laggy at times. I would like to hear more about all of this. The oppinions I have read are either do it or don't do it. There are more problem posts after attempting to flash than there are good ones where it worked. I really could care less about a quadrant score to be honest, but I would like to have a faster smoother running tab. I really dont care about making calls on it either. Thats why I have a phone. JMO. I think part of the issue in this thread is that there are Euro and USA version which are completely different and require different roms and such.
I have been reading and lurking in the tab development thread for a while now and am not impressed with any of it yet. Maybe someone could shed some light on things and change my mind.
Click to expand...
Click to collapse
flash modacos kernel and rom, convert to ext4, you'll be amazed.
to OP
In startup auditor i just checked disable all, and am not having any problems, unless you are using task manager to disable
...CALENDAR
CALENDAR STORAGE...
edit: But when i check advanced task killer, it still shows that all the disabled apps are running
dubie76 said:
Having done nothing but root, my tab gets about 1000 quadrant score. I have tried setcpu using on demand and it actuall has made my tab worse. I am very hesitant to flash anything on the tab. It seems very involved and complicated. I have an HD2 as well and have been flashing since Android was on SD. That process is simple. Everything I have read about flashing things to the tab doesn't look that way. I really havent had any issues with my tab as stock other than a bit laggy at times. I would like to hear more about all of this. The oppinions I have read are either do it or don't do it. There are more problem posts after attempting to flash than there are good ones where it worked. I really could care less about a quadrant score to be honest, but I would like to have a faster smoother running tab. I really dont care about making calls on it either. Thats why I have a phone. JMO. I think part of the issue in this thread is that there are Euro and USA version which are completely different and require different roms and such.
I have been reading and lurking in the tab development thread for a while now and am not impressed with any of it yet. Maybe someone could shed some light on things and change my mind.
Click to expand...
Click to collapse
I agree. The process of flashing the Galaxy is much more dauting than anything on the HD2. I suggest you do the EXT4 file converstion. All you need is follow the step by step I wrote above. It makes a huge difference. As for everything else, I too hold off to do too much flashing. The ROM I use now is great and lighter than stock but your seems to work well so keep it. For me when a ROM is good I just use it. When I bought the HD2 I flashed it 2 times with a custom ROM till i found one that worked for me and kept it for 8 months. But backing up and restoring WinMo is much easier... on Androind its all more complicated if you dont know what you are doing. Disable some start-ups on your unit, convert the file system to EXT4 and make sure you have nothing on your home screen doing a lot of refreshing and your tab will work great
natious said:
flash modacos kernel and rom, convert to ext4, you'll be amazed.
to OP
In startup auditor i just checked disable all, and am not having any problems, unless you are using task manager to disable
...CALENDAR
CALENDAR STORAGE...
edit: But when i check advanced task killer, it still shows that all the disabled apps are running
Click to expand...
Click to collapse
Is everything working 100% on that ROM? I do not want any ROMS that are having problems.
I too am not impressed with anything that us out yet...seems like any ROM process is tedious and complicated.
Glad the thread starter modified his tab to his liking, but what's the point of having it if you need to drastically change everything. I have a rooted DInc and not use any of things......didn't really see a performance gain with set CPU.
I'm going to continue waiting for something more reliable and use my tab the way it was meant to be, with all its hardware and widgets.
dubie76 said:
Having done nothing but root, my tab gets about 1000 quadrant score. I have tried setcpu using on demand and it actuall has made my tab worse. I am very hesitant to flash anything on the tab. It seems very involved and complicated. I have an HD2 as well and have been flashing since Android was on SD. That process is simple. Everything I have read about flashing things to the tab doesn't look that way. I really havent had any issues with my tab as stock other than a bit laggy at times. I would like to hear more about all of this. The oppinions I have read are either do it or don't do it. There are more problem posts after attempting to flash than there are good ones where it worked. I really could care less about a quadrant score to be honest, but I would like to have a faster smoother running tab. I really dont care about making calls on it either. Thats why I have a phone. JMO. I think part of the issue in this thread is that there are Euro and USA version which are completely different and require different roms and such.
I have been reading and lurking in the tab development thread for a while now and am not impressed with any of it yet. Maybe someone could shed some light on things and change my mind.
Click to expand...
Click to collapse
Sent from my ADR6300 using XDA App
dubie76 said:
Is everything working 100% on that ROM? I do not want any ROMS that are having problems.
Click to expand...
Click to collapse
Sure is, I use my tab as a phone replacement so I had to have everything work, you will be waiting eons for a decent update from samsung
Sent from my Galaxy Tab of awsomeness
AlpineM3 said:
I too am not impressed with anything that us out yet...seems like any ROM process is tedious and complicated.
Glad the thread starter modified his tab to his liking, but what's the point of having it if you need to drastically change everything. I have a rooted DInc and not use any of things......didn't really see a performance gain with set CPU.
I'm going to continue waiting for something more reliable and use my tab the way it was meant to be, with all its hardware and widgets.
Sent from my ADR6300 using XDA App
Click to expand...
Click to collapse
How are you not impressed if you haven't tried anything?
Sent from my Galaxy Tab of awsomeness
Thank you for your detailed post. While I agree with you that the stock SGT rom and browser suck but where do you think the JMI, JMF, JMx ROMs coming from?
Most ROMs I've seen (except for CM) are based from some sort of Jxx
Please keep the tweak posts going. Good stuff and thanks!
natious said:
How are you not impressed if you haven't tried anything?
Sent from my Galaxy Tab of awsomeness
Click to expand...
Click to collapse
Not impressed with all the problems being posted just tring to flash it, and how complex it is to do it. Guess that's what I meant. Flashing the hd2 is a very simple process. Tab is not
Sent from my HTC HD2 using XDA App
My boy,
Only getting my Galaxy tomorrow but looking through threads on my favorite forum.
And guess the first one I happen into... I will follow avidly.
Hi dubie76,
Try an app called OCLF 2.0 on the Market. It is a Lag fix app for the Samsung Galaxy S which also works on the Tab.
https://market.android.com/details?id=com.rc.QuickFixLagFixR2
You have to install EXT2 tools and then install one click lag fix, both are done within the app.
I had this on my Tab before flashed to a custom ROM. The tab was much faster and did not have and lag compared to stock, the Quadrant score was around 1900.
Also you can uninstall the modifications in the app and easily reverse back to stock. The only disadvantage is you will loss about 800mb of internal memory (the 2Gb space), so if you don't have much space left, you will need to uninstall some apps and reinstall them once you applied the lag fix.
P.S. thanks to OP for the SystemApp Remover & Startup Auditor suggestion.
Custom ROMs?
Hi everyone!
Consider this:
The locked GTab (in standby) on an original ROM with a connected to it BT headset wakes up after replying a call from BT and can potentially have anything pressed as being in the bag due to its size...
My point is that there is NO fix for this on XDA therefore why should I expect any significant advancements from a custom ROM if such simple things cannot be fixed on Android.
My personal view is that Android is unfortunatelly not as flexible for adjustments as WinMo (i have HD2 as well with a wonderful custom Artemis ROM).
I've tried two Roto ROMs on my GT and they havent provided any noticeable enhancements in performance to my eye (perhaps some rating went up - I dont care about tech stats). I reverted to stock ROM P1000XWJMI that works as fast for a "regular user".
I am sad to resume my experience with hacking the GT as not worth it: you get serious risk of getting the GT bricked (much more complicated than with WinMo), loose the warranty and are open for instability and sudden incompatibilities with crashes.
On the third custom ROM installation attempt I was stuck on a black screen after powering on (stuck on the bootloader!) and couldnt initiate flash for multiple times. I was shocked and very nervous. Thats when the stock ROM saved my ass and I am not willing the risk of playing around any more with non-firmware ROMs for Android GT.
Regarding the alternative screen lockers available - please do not suggest Screen Suite (the best of the worst) and things like No-Lock (to get rid of the original locker) as they all mess up once in a while (tested) with the default ROM settings and the original core locker.
PS
In my view the best thing we can and should do first of all is to COMPLAIN to SAMSUNG Tech Support and Software Developers (I did twice already).
If every one of us from theese GTab forums would do this they would definitely get faster with resolving issues.
mrbuz said:
Hi everyone!
Consider this:
The locked GTab (in standby) on an original ROM with a connected to it BT headset wakes up after replying a call from BT and can potentially have anything pressed as being in the bag due to its size...
My point is that there is NO fix for this on XDA therefore why should I expect any significant advancements from a custom ROM if such simple things cannot be fixed on Android.
My personal view is that Android is unfortunatelly not as flexible for adjustments as WinMo (i have HD2 as well with a wonderful custom Artemis ROM).
I've tried two Roto ROMs on my GT and they havent provided any noticeable enhancements in performance to my eye (perhaps some rating went up - I dont care about tech stats). I reverted to stock ROM P1000XWJMI that works as fast for a "regular user".
I am sad to resume my experience with hacking the GT as not worth it: you get serious risk of getting the GT bricked (much more complicated than with WinMo), loose the warranty and are open for instability and sudden incompatibilities with crashes.
On the third custom ROM installation attempt I was stuck on a black screen after powering on (stuck on the bootloader!) and couldnt initiate flash for multiple times. I was shocked and very nervous. Thats when the stock ROM saved my ass and I am not willing the risk of playing around any more with non-firmware ROMs for Android GT.
Regarding the alternative screen lockers available - please do not suggest Screen Suite (the best of the worst) and things like No-Lock (to get rid of the original locker) as they all mess up once in a while (tested) with the default ROM settings and the original core locker.
PS
In my view the best thing we can and should do first of all is to COMPLAIN to SAMSUNG Tech Support and Software Developers (I did twice already).
If every one of us from theese GTab forums would do this they would definitely get faster with resolving issues.
Click to expand...
Click to collapse
So what if the screen goes on in your bag, unless you have a fresh finger floating around in there nothing can press any buttons on the capcitive screen, also my tab I just hit the lock button in a bt call, screen turns off phone stays on
Sent from my Galaxy Tab of awsomeness
Im so confused. I have my tab rooted and oclf 2.0. Im scoring 2200 in quadrant and.my dolphin hd browser is SO laggy. Even with flash disabled. Any ideas?
koxville said:
Im so confused. I have my tab rooted and oclf 2.0. Im scoring 2200 in quadrant and.my dolphin hd browser is SO laggy. Even with flash disabled. Any ideas?
Click to expand...
Click to collapse
because quadrant doesn't mean **** in the real world, i score 2300 but thats with the 1.4 oc.
Give miren a try, tbh its the best

[13.05.2011][2.2+] CF3D :: NightMode v1.1 [BETA][ROOT][OpenGL ES 2.0+]

THIS APP HAS BEEN SUPERCEDED BY "Chainfire3D": http://forum.xda-developers.com/showthread.php?t=1087427
It contains all the functionality present in NightMode and more.
.
.
.
.
.
.
DO NOT INSTALL ON HONEYCOMB (yet)
YOU WILL READ THE ENTIRE POST. YES YOU WILL. EVEN YOU, SUPERCURIO !
About
NightMode itself is an implementation of Jeff Sharkey's excellent power-saving and night-vision-preserving idea for surfaceflinger effects. Really, you should read that link.
The red mode is great in darkness as it does a good job preserving night-vision, for me the power-saving is secondary (power-saving is on OLED screens only)
Unlike Jeff's original article, NightMode is NOT based on surfaceflinger (or other) source modifications, the same effect (more or less) is achieved by using a proxy driver I call CF3D. NightMode serves as the first test of this driver, which will ultimately try to make games run on your device that normally do not.
If you are running CM, you have a similar option already in your settings (which uses the surfaceflinger method).
CF3D driver
The CF3D driver used in the app is a proof-of-concept proxy driver I'm building. It's ultimate purpose is to serve as a compatibility layer and to implement some extra features. Or in normal people English: make stuff work that doesn't, and add some cool.
CF3D is dangerous
The installation of the CF3D driver is not without risk. So far it has worked for everyone who has tried to install it, but you should definitely make a CWM backup before trying!
Successful tests of CF3D
- HTC Hero (not supported by this APK)
- HTC HD2 (MDJ on NAND, Adreno200)
- Samsung Galaxy S (2.3.3, PowerVR SGX540)
- Samsung Galaxy Tab 7" (2.3.3, PowerVR SGX540)
- Samsung Galaxy SII (2.3.3, Mali-400 MP)
- Motorola Atrix 4G (2.2.1 ?, Tegra2)
- Motorola Droid 2 (?, PowerVR SGX530)
- LG Optimus 2X (2.3.4, Tegra2)
More about NightMode !
The featureset is nowhere near what I wanted to release for this beta, but I ran into a lot of snags, and it's simply time to put it out there. For example, what I really wanted is automatic night mode in the dark. However after some testing it became obvious that the light sensors in the phones I used are simply not good enough to accomplish this. So there goes that feature For some reason, they appear to be unable to distinguish between house lighting at night, and pitch black
So the feature set has become really simple: you select which night mode color you want, and whether it should be on or off.
For your convenience, there is also the option to create a shortcut on your home screen to toggle night mode on and off. You can either create it by pressing the button in the app, or: tap-and-hold on the home screen -> shortcuts -> Toggle NightMode.
Requirements
NightMode requires:
- OpenGL ES 2.0 (every 1ghz+ phone has this)
- SuperUser / Root
- Writable /system (it will try to remount system as read/write when needed, but the changes need to stick between reboots)
- S-OFF ??
- Having root access from recovery is a big plus to solve problems if you run into them
Installation
If you have CWM or another recovery-based backup system, make a backup before proceeding !
Install the APK as you would any other. Open the program, and press the "Install" item under the "CF3D driver" heading. This will attempt to install the CF3D driver and reboot your device.
Please make sure you have USB debugging enabled, so you can logcat and potentionally fix problems manually in case of a no-boot.
When installation fails and your device doesn't boot
- If you can achieve root access through ADB shell while booting or in recovery, the fix is usually easy, just execute the /system/lib/cf3d_uninstall.sh script as root.
- Otherwise, if you have CWM, do an advanced restore of the /system partition
- If all else fails, reflash the /system partition or the entire firmware
Uninstallation
Open the app, and select "Uninstall" (if available), then uninstall the APK like you would any other.
Thanks!
Though the app itself may not be very interesting, feedback on devices it does and doesn't work on is most welcome (please include logcats of the boot process), just for the sake of progress with the CF3D proxy driver.
Screenshots / Video
Screenshots are attached below. Here is the video:
Download
Use the Thanks! button if you like it!
DOWNLOAD REMOVED, THIS APP HAS BEEN SUPERCEDED BY "Chainfire3D": http://forum.xda-developers.com/showthread.php?t=1087427 (441 original downloads)
*plants eyes onto screen*
*F5*
*F5*
*F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5*
That sure was the longest edit in history... got sidetracked by other stuff
Chainfire said:
DO NOT ATTEMPT TO USE THIS RIGHT NOW UNLESS YOU ARE EXPERT LEVEL AND/OR WILLING TO REFLASH YOUR FIRMWARE !
YOU WILL READ THE ENTIRE POST. YES YOU WILL. EVEN YOU, SUPERCURIO !
Click to expand...
Click to collapse
Guilty
Thanks to the entire reading session that was well worth it I understood it was not at all a Ripoff of the color effects that are in CyanogenMod, not even related.
Actually the concept is super powerful and I'm already flooded by ideas of new stuff possible with this approach.
Fantastic stuff Chainfire.
Short video added: http://www.youtube.com/watch?v=okKArBstjwA
I really have been waiting for something like this since i got my first android device. Absolutely awesome.
Atrix.
Heehee, updated to v1.1 already... seems I left some debug code in there that disabled PowerVR textures
This sounds really cool . But all the technical stories behind it are completely unclear to me (because I am simply a user, not a maker, so I didn't really delve into this kind of stuff (yet?)).
The thing that matters to me is the battery saving part. Is the amount of battery saving (roughly) the same between these different methods (CF3D/CM7/surfaceflinger)?
And being sufficiently scared by your CF3D is dangerous warnings: did you receive any reports yet from SGS i9000 2.2.1 Users? (Or maybe even more specific, JS8 or Doc rom users, if you think that matters anything.)
I will keep my eye on this, quite interesting .
Tried and tested on Rooted UK Galaxy S2
PDA:XWKE1
PHONE: XXKDJ
CSC:XEUKD1 (XEU)
Install, reboot, Night Mode, all went without a hitch and work as expected.
THIS IS AWESOME (have not tried)
jjwa said:
This sounds really cool . But all the technical stories behind it are completely unclear to me (because I am simply a user, not a maker, so I didn't really delve into this kind of stuff (yet?)).
The thing that matters to me is the battery saving part. Is the amount of battery saving (roughly) the same between these different methods (CF3D/CM7/surfaceflinger)?
And being sufficiently scared by your CF3D is dangerous warnings: did you receive any reports yet from SGS i9000 2.2.1 Users? (Or maybe even more specific, JS8 or Doc rom users, if you think that matters anything.)
I will keep my eye on this, quite interesting .
Click to expand...
Click to collapse
The amount of battery saving should be exactly the same. The battery saving is a property of OLED screens, when not all colors are used. OLED only sends power to pixels that aren't black (for example in red mode, green and blue pixels will remain black, thus not use any power). It has nothing to do with the method used to get there.
There have been no 2.2.1 reports yet, btw.
It works perfectly on my Optimistic 2X
Great work dude!
EDIT: Btw, are you going to release the source at some point?
Sent from my Optimus 2X using XDA App
kiljacken said:
It works perfectly on my Optimistic 2X
Great work dude!
EDIT: Btw, are you going to release the source at some point?
Sent from my Optimus 2X using XDA App
Click to expand...
Click to collapse
Thanks!
Source? I doubt it... I don't normally release source for anything.
Chainfire said:
Thanks!
Source? I doubt it... I don't normally release source for anything.
Click to expand...
Click to collapse
D:
Btw it's running 2.3.4
Sent from my Optimus 2X using XDA App
Works perfectly on my sgs custom rom based on 2.3.3 jvh with touchwizz 4 and voodoo hack kernel. thank you sir !!!
Works on Droid 2 running Fission ROM.
Amazing!
Working on HD2 with TyphooN_CM7_v3.2.6.
Great stuff! Thank U for that!!!
*eyes glued to screen* when it says tested on HTC hero would that be the GSM version or CDMA
Sent from my HERO200 using XDA App
fowenati said:
*eyes glued to screen* when it says tested on HTC hero would that be the GSM version or CDMA
Sent from my HERO200 using XDA App
Click to expand...
Click to collapse
Does the hero have open gl2?
Sent from my MB860 using Tapatalk
I find a cool bug lol, i was in yellow mode before i reboot in my red recovery mode, convert my partition in ext 4 with voodoo hack kernel, the boot was in lovely yellow lol. After that u just need to use toggle and all works fine when ur in touchwizz or others home . No incidence for future boot.
Edit : sorry my english is not terrible :-(, hope you understand what i would like to say. See ya

[CM9 beta] Tips & Customization Discussion

Tips & Customization Discussion Thread
CM9 beta1: Android 4.0.4 for Samsung Epic 4G​
This thread is ONLY to discuss issues related to best practices and tips of configuration options, helpful add-ons, utilities and apps on CM9 for Epic 4G. The best tips are regularly summarized in the official Epic CM9 Customization Guide. Please read the guide before posting to this thread.
CM9 Discussion Threads
User Support, Questions & Answers Thread
Battery Optimization Discussion Thread
Tips & Customization Discussion Thread
Development Discussion Thread
I highly recommend doing the battery optimization first before customizing the settings.
First thing you want to do is change the default notification from Silent to something else so you hear when you have emails, texts, etc.
There is a lot of stuff in the optimization guide to help you get things started and set-up. I like going into the Messaging app and have it not only divide texts into 160 character blocks but also number them so people know the reading order as they aren't always sent and received contiguously.
I think that is a good start for now!
Being a CM9 user since day 1 I figured out that you will NEVER want to use an app form the market which allows you to change the frequencies of your phone. I found out that it drains battery EVEN MORE then when using the built in one under Performance.
And I highly recommend that you get Juice Defender. Ultimate is best because it allows you to choose what apps you want to have data turned on for.
And if you monkey around with Voodoo control I'm sure you'll find something to your likes.
Screen Filter from the market is also a great tool. If you think the lowest brightness is to much and want it darker then use that tool.
I recently learned that custom kernels are not recommended.
prochargedls2 said:
Being a CM9 user since day 1 I figured out that you will NEVER want to use an app form the market which allows you to change the frequencies of your phone. I found out that it drains battery EVEN MORE then when using the built in one under Performance.
And I highly recommend that you get Juice Defender. Ultimate is best because it allows you to choose what apps you want to have data turned on for.
And if you monkey around with Voodoo control I'm sure you'll find something to your likes.
Screen Filter from the market is also a great tool. If you think the lowest brightness is to much and want it darker then use that tool.
I recently learned that custom kernels are not recommended.
Click to expand...
Click to collapse
I'd like to know how this is possible. I mean, if you're undervolting (throwing less power to run a specific speed) I would like to know how this actually drains battery quicker. It simply goes against logic.
Not saying I don't believe you, but I would like it explained why this is true.
CWM flashable Sprint Visual Voicemail
http://epiccm.blogspot.com/2012/03/customization-guide.html
Sprint Visual Voicemail now works on CM9, meaning we now have three options for visual voicemail on Epic! Read the Customization Guide for CWM5 flashable .zip and setup instructions if you want to use it. Be aware that there are currently glitches.
wtogami said:
http://epiccm.blogspot.com/2012/03/customization-guide.html
Sprint Visual Voicemail now works on CM9, meaning we now have three options for visual voicemail on Epic! Read the Customization Guide for CWM5 flashable .zip and setup instructions if you want to use it. Be aware that there are currently glitches.
Click to expand...
Click to collapse
I can't get it to work at all. It installs and looks like its all there but I've left 4 voice messages for myself in the past hour and nothing.
Sent from my MTD Epic 4G SGS using Tapatalk
edfunkycold said:
I can't get it to work at all. It installs and looks like its all there but I've left 4 voice messages for myself in the past hour and nothing.
Click to expand...
Click to collapse
Did you run the app once? It provisions the first time you run it, and tells you with Toast messages.
wtogami said:
Did you run the app once? It provisions the first time you run it, and tells you with Toast messages.
Click to expand...
Click to collapse
Yes it did all of that as with any tw rom when you do fresh flash and set up phone. I even just for nostalgic reasons played the two set up messages. But I then used my wife's phone and called myself and left several voice messages but nothing comes through the app. I read everywhere people having success with this and I'm struggling. I even tried sending the [email protected] message and it looks like it sent but nothing happens.
Edit: I am getting the text messages alerting me that o have a VM but the app is not downloading the messages. I still have to dial #1 on dialer to dial my voice mail.
Sent from my MTD Epic 4G SGS using Tapatalk
wtogami said:
Did you run the app once? It provisions the first time you run it, and tells you with Toast messages.
Click to expand...
Click to collapse
I get a 9016 message with provisioning successful but if there was a toast message it was so quick I missed it but I don't think there was one. Does this mean that I need to delete data for the app and try again or does this mean it provisioned but like edfunkycold I too get the text messages about new VM but the app doesn't download them. In fact the messages aren't on sprints VM system like the app told it to delete the message as if it had downloaded, even though there is no message in the app to listen to.
hayzooos said:
I'd like to know how this is possible. I mean, if you're undervolting (throwing less power to run a specific speed) I would like to know how this actually drains battery quicker. It simply goes against logic.
Not saying I don't believe you, but I would like it explained why this is true.
Click to expand...
Click to collapse
Well its mainly for those who leave it in their pocket for long periods of time. Because if you have apps like twitter, facebook, or anything like that they run in the background and the cpu will require more power to run them all. Now if you used an app from the market to control them it would drain battery because it requires battery to run apps in the background and that app you supposedly have from the market will run in the background, thus causing battery to drain even if you're under volting it.
If that wasn't very clear tell me.
Sent from my Epic with a lil' ice cream on it
StoneRyno said:
I get a 9016 message with provisioning successful but if there was a toast message it was so quick I missed it but I don't think there was one. Does this mean that I need to delete data for the app and try again or does this mean it provisioned but like edfunkycold I too get the text messages about new VM but the app doesn't download them. In fact the messages aren't on sprints VM system like the app told it to delete the message as if it had downloaded, even though there is no message in the app to listen to.
Click to expand...
Click to collapse
Same problem here, except I dont think that mine are getting deleted, cuz I can still call my VM and listen to them. But for the life of me I can not get the VVM to work, I have tried absolutely everything I can think of. Please if anyone can figure out what the deal here is, it would be greatly appreciated. The loss of VVM was pretty much the only thing I didn't like about This CM9 for Epic, since I flashed the alpha 1.
Edit: Just an update: when I use Sprint VVM to compose a message to myself, to test send and receive functions, It sends the VM to me just fine. I get the 9016 text and its on my VM but It still does not show up in the Sprint VVM app.
dhadlock said:
Edit: Just an update: when I use Sprint VVM to compose a message to myself, to test send and receive functions, It sends the VM to me just fine. I get the 9016 text and its on my VM but It still does not show up in the Sprint VVM app.
Click to expand...
Click to collapse
Exactly how I tried to test it except the message I composed and successfully sent was not on VM when I call in after getting the 9016 message saying I got that VM. This is what leads me to believe that sprint VVM is failing to download the message and deletes it from the VM system as if it had.
prochargedls2 said:
Well its mainly for those who leave it in their pocket for long periods of time. Because if you have apps like twitter, facebook, or anything like that they run in the background and the cpu will require more power to run them all. Now if you used an app from the market to control them it would drain battery because it requires battery to run apps in the background and that app you supposedly have from the market will run in the background, thus causing battery to drain even if you're under volting it.
If that wasn't very clear tell me.
Sent from my Epic with a lil' ice cream on it
Click to expand...
Click to collapse
I see where you're coming from, I think. So you're saying Voltage Control, for example, would be running more frequently if I have a lot of apps that update in the background becuase in addition to those apps running, VC would then have to run more to produce more power to run the other apps.
I guess I was under the impression that VC would run at boot (however you have it set up) but it wouldn't continue to run once the settings were in place. For example, I never see Voltage Control as an app listed in the running apps or or cached processes for that matter either.
So then my question becomes if it's not an active running app, and it's not a cached app either, how is it draining more battery?
hayzooos said:
I see where you're coming from, I think. So you're saying Voltage Control, for example, would be running more frequently if I have a lot of apps that update in the background becuase in addition to those apps running, VC would then have to run more to produce more power to run the other apps.
I guess I was under the impression that VC would run at boot (however you have it set up) but it wouldn't continue to run once the settings were in place. For example, I never see Voltage Control as an app listed in the running apps or or cached processes for that matter either.
So then my question becomes if it's not an active running app, and it's not a cached app either, how is it draining more battery?
Click to expand...
Click to collapse
i dont think it does. i never see it as a running app, and it doesnt show up as using the battery in battery stats, so i think this guy is misinformed on that aspect. if youre using undervolted settings with the ondemand governor, you probably wont be using more battery than on stock. im in know way absolutely sure of this and im not a dev or computer genius or anything like that, but im pretty sure the battery problems that DO occur are on the custom kernel side. since a custom kernel is needed to overclock and undervolt, and some of the 3rd party kernels have had some battery draining issues, like wake lock issues and stuff, i can see where one would get the impression that using an oc/uv app might be causing battery draining issues. i myself am using the shadow kernel which oc's to 1400 mhz and at first was getting terrible battery status. but after messing around with a few settings, reading up on tips for saving battery, and tweaking juice defender ultimate to my liking, im getting exceptional battery life. almost as good as the stock kernel. i would have dealt with a bigger difference in battery drain for voodoo color anyways. not to mention, the added bonuses of being able to oc/uv. im in no way trying to knock the stock kernel, my preference is just that, my preference.
as far as a custom kernel not being recommended...thats easy, its also not recommended to root your phone or flash a custom ROM. nuff said, right?
p.s. while voltage control does NOT show up on my battery stats, juice defender ultimate DOES. VC does NOT seem to be running in the background at all times, but JD definitely IS.
dhadlock said:
Same problem here, except I dont think that mine are getting deleted, cuz I can still call my VM and listen to them. But for the life of me I can not get the VVM to work, I have tried absolutely everything I can think of. Please if anyone can figure out what the deal here is, it would be greatly appreciated. The loss of VVM was pretty much the only thing I didn't like about This CM9 for Epic, since I flashed the alpha 1.
Edit: Just an update: when I use Sprint VVM to compose a message to myself, to test send and receive functions, It sends the VM to me just fine. I get the 9016 text and its on my VM but It still does not show up in the Sprint VVM app.
Click to expand...
Click to collapse
So after a big long ordeal (accidentally flashed mtd over bml and soft bricked my phone for a day lol ) I finally got it fixed with odin. Then I managed to get back to a working backup that had a working version of Sprint VVM and backed up the data with titanium backup then got my cm9 beta 0 restored and flashed a fresh version of SVVM then went in and made sure it was set in the dialer settings and then restored the app data and the provisioned and still no damn luck.
beltsnspoons said:
p.s. while voltage control does NOT show up on my battery stats, juice defender ultimate DOES. VC does NOT seem to be running in the background at all times, but JD definitely IS.
Click to expand...
Click to collapse
This is because VC loads the custom changes at boot time and is no longer needed. Where as JD is a service that performs periodic actions based on how the user setup JD. In essence JD will consume a slight bit of battery but the increase in savings will outweigh it's consumption. If anyone would like I can try and determine JDs exact usage if it registers in any of the available tools for checking apps battery/CPU usage. As far as I'm aware it does not show up in androids battery info section commonly used to show battery usage in screen shots here on the forum. I of course would post those findings if any in the battery thread.
For those who can't enable the native HOTSPOT as reported on issue 148, try side-loading android-wifi-tether.
With AWT, I can have AP infrastructure hotspot using netd, with WPA2 encryption and multiple Android devices connected. The trick is to configure the device profile as an Epic 4G Touch, Galaxy or any Samsung device that shows netd option in the Setup-Method. Optionally, turn off driver force-reload to get rid of a harmless error message (works fine either way).
A nice thing about AWT is it shows the hotspot real time, accumulative bandwidth usage, and if you don't need to use AP infrastructure mode, you can even lower the ad-hoc mode transmit power for lower battery use.
It also has MAC-based client access control, and on TW ROM, it would give hidden SSID option.
(sorry for posting this multiple times; just thought I'd share my finding on all the relevant threads.
ok what sound manager app is better....
i have bought voodoo
I know that DSP comes with cm9...
I use Voodoo (paid version) so I can limit the headset volume on my kids' Epics.
FYI: For those of you that are having issues with VVM, are you using GoSMS? If so, it's been posted in the CM9 tips and tricks thread that GoSMS and Sprint VVM dont play nicely with one another.
Freeze or Uninstall GoSMS and your VM's should start trickling in!!!
Here's the link to the post I mentioned:
http://forum.xda-developers.com/showpost.php?p=23817393&postcount=650

Sense4 ROM with supercharger

Sorry for my poor english.
I really want Sense4a or Sense4 full version ROM in my phone as daily drive.
but current Sense4 ROM's performance compare with RCMix3D V4.0 + Neoc CFS kernel is poor....
the birds told to me, Virtuous Infinity alpha ROM plus V6SuperCharger can up performance & battery life!
but this threadhttp://forum.xda-developers.com/showthread.php?t=991276/ I can't understand....
who can provide me a simple teaching with illustrate??
thx
I read it and it seems like it would theoretically work on any device, any Rom. But I not sure whether you need to bake it in the Rom or if can be flashed through recovery. I would do a back up and see if it works.
Sent from my Inspire 4G using Tapatalk 2
V6 Supercharger is a script which you run trought smanager from android market
Sent from my HTC Desire HD using xda premium
Let me make you easier for you, as I just made my first supercharger on my dhd.
1. Go HERE and download SuperCharger_Starter_Kit_RC12.zip & V6_SuperCharger_for_Android-Update9_RC10.sh.pdf (attached on end of post). There is new version (V6_SuperCharger_for_Android-Update9_RC11_Test_4.sh.pdf), but its test file, so I stick with RC10.
2. Unzip supercharger starter kit -> put all files (including V6_SuperCharger_for_Android-Update9_RC10.sh.pdf) in some folder on SD card, where U will find them later.
3. Go on play store and download SManager
4. Open SManager -> Make it browse as root -> search your Supercharger starter kit folder -> Run StartMeUp.sh and before You hit "Run", please select "Su" option (it will make you green skull icon), below it. Now its time to press "Run" and follow instructions. As I didnt install BussyBox before, i followed on installation with all Yes on confirmation.
5. After you finish with StartMeUp.sh, you can press grey X on top left corner.
6. Search for V6_SuperCharger_for_Android-Update9_RC10.sh.pdf and open it. Same as before, before you hit "Run", make it "Su" (grey skull, after you press it, it will become green) -> Now press "Run".
7. Thats all, follow instructions and you will not need to make any custom editing as it was before 15.8.2012
If my post was helpfull for you, please press Thank You button
P.S.: My Virtuos Sense4 rom is still not so smoth, but i will remake it again with a little bit different settings in supercharger . Also i need to say, it is much smoother than before, but still not that what i want
Update:
If you are on Virtuos Infinity, change scene from Virtuos to HTC, its even smoother
droidhd said:
Let me make you easier for you, as I just made my first supercharger on my dhd.
1. Go HERE and download SuperCharger_Starter_Kit_RC12.zip & V6_SuperCharger_for_Android-Update9_RC10.sh.pdf (attached on end of post). There is new version (V6_SuperCharger_for_Android-Update9_RC11_Test_4.sh.pdf), but its test file, so I stick with RC10.
2. Unzip supercharger starter kit -> put all files (including V6_SuperCharger_for_Android-Update9_RC10.sh.pdf) in some folder on SD card, where U will find them later.
3. Go on play store and download SManager
4. Open SManager -> Make it browse as root -> search your Supercharger starter kit folder -> Run StartMeUp.sh and before You hit "Run", please select "Su" option (it will make you green skull icon), below it. Now its time to press "Run" and follow instructions. As I didnt install BussyBox before, i followed on installation with all Yes on confirmation.
5. After you finish with StartMeUp.sh, you can press grey X on top left corner.
6. Search for V6_SuperCharger_for_Android-Update9_RC10.sh.pdf and open it. Same as before, before you hit "Run", make it "Su" (grey skull, after you press it, it will become green) -> Now press "Run".
7. Thats all, follow instructions and you will not need to make any custom editing as it was before 15.8.2012
If my post was helpfull for you, please press Thank You button
P.S.: My Virtuos Sense4 rom is still not so smoth, but i will remake it again with a little bit different settings in supercharger . Also i need to say, it is much smoother than before, but still not that what i want
Update:
If you are on Virtuos Infinity, change scene from Virtuos to HTC, its even smoother
Click to expand...
Click to collapse
You can do all the steps above or just get AutoKiller Memory Optimizer Pro from Google play store. It does the same thing but through an a simple App.
Nothing does the same thing.
V6 is a complete fix which includes priority and grouping adjustments - not just minfrees.
If you don't know what I'm talking about, that means you don't know what you're talking about.
zeppelinrox said:
Nothing does the same thing.
V6 is a complete fix which includes priority and grouping adjustments - not just minfrees.
If you don't know what I'm talking about, that means you don't know what you're talking about.
Click to expand...
Click to collapse
Hey Zeppelinrox,
True, not all things do the same. But in this case simplicity works best.
Don't get me wrong. It's great that you wrote this script and a lot of people appreciate it including me and I hope you keep continuing to improve it. We just hope you would consider creating a front UI for it like an app since it would make things easier for people.
Thanks again for all your efforts.
droidhd said:
Let me make you easier for you, as I just made my first supercharger on my dhd.
1. Go HERE and download SuperCharger_Starter_Kit_RC12.zip & V6_SuperCharger_for_Android-Update9_RC10.sh.pdf (attached on end of post). There is new version (V6_SuperCharger_for_Android-Update9_RC11_Test_4.sh.pdf), but its test file, so I stick with RC10.
2. Unzip supercharger starter kit -> put all files (including V6_SuperCharger_for_Android-Update9_RC10.sh.pdf) in some folder on SD card, where U will find them later.
3. Go on play store and download SManager
4. Open SManager -> Make it browse as root -> search your Supercharger starter kit folder -> Run StartMeUp.sh and before You hit "Run", please select "Su" option (it will make you green skull icon), below it. Now its time to press "Run" and follow instructions. As I didnt install BussyBox before, i followed on installation with all Yes on confirmation.
5. After you finish with StartMeUp.sh, you can press grey X on top left corner.
6. Search for V6_SuperCharger_for_Android-Update9_RC10.sh.pdf and open it. Same as before, before you hit "Run", make it "Su" (grey skull, after you press it, it will become green) -> Now press "Run".
7. Thats all, follow instructions and you will not need to make any custom editing as it was before 15.8.2012
If my post was helpfull for you, please press Thank You button
P.S.: My Virtuos Sense4 rom is still not so smoth, but i will remake it again with a little bit different settings in supercharger . Also i need to say, it is much smoother than before, but still not that what i want
Update:
If you are on Virtuos Infinity, change scene from Virtuos to HTC, its even smoother
Click to expand...
Click to collapse
really simple. I will try this within a few days.
I hope I can rock in the Virtuous Infinity Alpha ROM, taste full Sense4.0
http://gphonefans.net/forum.php?mod=redirect&goto=findpost&ptid=45392&pid=725671&fromuid=263995
this a SuperCharger setup guide link. in this thread have photo & step, I really wont to see this style of guide.
However, I will get used to your way of teaching. :good:
blade1198 said:
Hey Zeppelinrox,
True, not all things do the same. But in this case simplicity works best.
Don't get me wrong. It's great that you wrote this script and a lot of people appreciate it including me and I hope you keep continuing to improve it. We just hope you would consider creating a front UI for it like an app since it would make things easier for people.
Thanks again for all your efforts.
Click to expand...
Click to collapse
Every time you talk, you say something incorrect.
Simplicity has no bearing on effectiveness and does not work best in this case.
When it's an app, I'm sure people will still be confused as **** even tho it will be as idiot proof as possible.
Just like the script is now, it's as idiot proof as possible and people still get confused as ****.
zeppelinrox said:
Just like the script is now, it's as idiot proof as possible and people still get confused as ****.
Click to expand...
Click to collapse
It's really idiot-proof
I'm using it besides and while were here, I just wanna thank you for this script, really gives a boost to my device
zeppelinrox said:
Every time you talk, you say something incorrect.
Simplicity has no bearing on effectiveness and does not work best in this case.
When it's an app, I'm sure people will still be confused as **** even tho it will be as idiot proof as possible.
Just like the script is now, it's as idiot proof as possible and people still get confused as ****.
Click to expand...
Click to collapse
This was currently written by another member:
While the guy that wrote the script is obviously a very very talented programmer, he's a horrible technical writer. Something as profound as memory management deserves clear and well-delineated overviews and instructions. I was left wondering at every step. The changes in font size, colours, and collapsible buttons weirded me out!
The script is way too much.
I would've preferred very succinct instructions and prompts during the script.
Does help for sure. Run your choice of memory widget and see!
At the next release of this ROM ill flash again (back on ARHD 6.3.3) but there are little things that are driving me batty - MMS/dropped connection, stereo bluetooth pairings that just drop off and need a reboot or re-pairing, and a periodic sluggishness that creeps in and out.
I'm very excited to see where this goes!
Sent from my Desire HD using xda premium
Telus Desire HD (Toronto)
The was written by thousands of people:
Between 5 and 10% think it's too complicated so didn't try it.
Of those that actually used it (2850 votes)...
47% call it the best mod ever,
Over 64% see a big performance boost.
Over 80% claim a noticeable performance boost.
I don't cater to those easily confused or illiterate or lazy so I'd rather weed them out nice, nice - cuts down on the stupid questions.

Categories

Resources