[Q - Solved] Live with Walkman compass issues. - Sony Ericsson Xperia Mini, Mini Pro, Xperia Pro, A

Hi.
I'm having some issues with the compass on my phone (Live with Walkman)
When I use Google Maps, Sky Map or Smart Tools Compass. The compass doesn't point towards the north and it seems that I have "2 magnetic wests" as when I point my phone to the east it reads west.
However, when I use other compass apps like GPS Status, Super Compass, and Compass (from Catch.com developer in Market) it works flawlessly, even the compass test on the service menu works ok.
I know how to calibrate by doing the 8 shape with the phone, and I don't have any source of magnetic field near me. I tested another device (Galaxy tab) with the aforementioned conflictive apps and they work all right.
Does anybody have this same issue? Do you think is software or hardware?
Edit: I'm using Stock Kernel and .58 FW

Ok, I solved my problem by changing some values in /system/etc/sensors.conf
Originally the file was:
Code:
#Setup AKM897x axis
ak897xorientation_axis_map = 0,1,2
ak897xorientation_axis_sign = 1,1,-1
ak897xmagnetic_axis_map = 1,0,2
ak897xmagnetic_axis_sign = -1,1,1
...
Using zDevice test I noticed that the X and Y axes were transposed, after trial and error I came to a solution:
Code:
#Setup AKM897x axis
ak897xorientation_axis_map = 0,1,2
ak897xorientation_axis_sign = 1,1,-1
ak897xmagnetic_axis_map = 0,1,2
ak897xmagnetic_axis_sign = -1,-1,1
...
The reason some apps did work is because the sensors.conf is not used by those apps, instead they bypass it somehow. If you check Compass Test on the service menu (Or GPS Status compass), you'll see that it isn't affected by the .conf edition.
Be sure to make a backup of sensors.conf and reboot your phone to apply changes, if you use this fix.

Thanks I was using 1,-1,1 so it was not working in portrait mode and was somewhat jerky.
Now with -1,-1,1 it works perfect and smooth.

Not work for me. I used this method with "CyanogenTimeScape v1" but no luck.

Hello, looking for help.
Application "Compass" and "AndroSensor" show that axes "X" and "Z" are inverted.
To change the phone's location added (subtracted) opposite values.
The axes are not swapped, but their values ​​counted backwards.
Tilting the phone left axis values ​​are "Z" and negative tilt to the right are positive.
On the left the phone lying rotation axis value "X" up at the right rotation is reduced.
Behave opposite.
/system/etc/sensors.conf - does not exist
Phone ZTE Vodafone 945 / CM 7.2.0 / kernel 2.6.35.7-perf + / SDK 10
ROM: forum.andronova.net/showthread.php?45898-Vodafone-945-2-3-7-G%FDngerbread-Rom-100-T%FCrk%E7e
(Sorry for bad English. I do not speak English. I only use Google translator.)

what program do I have to use to change that file with?
what program did you used to change that file? - thanks for your solution btw, I have the exact same problem with my wt19
joaco.romero said:
Ok, I solved my problem by changing some values in /system/etc/sensors.conf
Originally the file was:
Code:
#Setup AKM897x axis
ak897xorientation_axis_map = 0,1,2
ak897xorientation_axis_sign = 1,1,-1
ak897xmagnetic_axis_map = 1,0,2
ak897xmagnetic_axis_sign = -1,1,1
...
Using zDevice test I noticed that the X and Y axes were transposed, after trial and error I came to a solution:
Code:
#Setup AKM897x axis
ak897xorientation_axis_map = 0,1,2
ak897xorientation_axis_sign = 1,1,-1
ak897xmagnetic_axis_map = 0,1,2
ak897xmagnetic_axis_sign = -1,-1,1
...
The reason some apps did work is because the sensors.conf is not used by those apps, instead they bypass it somehow. If you check Compass Test on the service menu (Or GPS Status compass), you'll see that it isn't affected by the .conf edition.
Be sure to make a backup of sensors.conf and reboot your phone to apply changes, if you use this fix.
Click to expand...
Click to collapse

There is no program. You need to root the device and update file yourself.
Please search forum to know how to root wt19i.

my problem fits the description... so.... nevermind

Related

FolioTNTmod 0.4 - Issues and bugs

This thread should be used for bugreporting and troubleshooting.
FolioTNTmod 0.4 ONLY.
Please make sure to post a detailed description of the issue, under what curcumstances it occures, and which processes are running.
Use the search function to make sure your issue hasn't already been solved before you post.
I've found a way to access Accounts Sync and Keyboard installation.
first, Accounts Sync :
- you must install LauncherPro even if you do not use it.
- On the desktop, add a new shortcut, select "Activities".
- Under "Account Settings and Sync" select "com.android.settings.ManageAccountsSettings.
Well, now you have a shortcut on the desktop to access the sync settings.
Keyboard installation :
After installing your alternative keyboard, copy the APK from /data/app/ to /system/app/
I create a simple script (in Gscript) that mount the file system as read/write , copy the APK, and enable the "SmartKeyboardPro" keyboard (after reboot).
code :
Code:
su
mount -o remount,rw /dev/block/mmcblk0p1 /system
cp /data/app/net.cdeguet.smartkeyboardpro-1.apk /system/app/
**optional**
reboot
**optional**
I was playing with Angry birds and after a reboot the application was corrupted in some way, the icon dissapeared and I had to reinstall, but the configuration was saved.
In anycase I used Angry Birds backup to backup it and after Andexplorer to copy the backup from the internal SD to the external one, to my surprise, the internal one was not present on Andexplorer (but I was able to go trought /mnt/sdcard).
Now I can see it again but there are a lot of files DiskCacheIndexxxxx.tmp, any clues?
julio77 said:
Keyboard installation :
After installing your alternative keyboard, copy the APK from /data/app/ to /system/app/
I create a simple script (in Gscript) that mount the file system as read/write , copy the APK, and enable the "SmartKeyboardPro" keyboard (after reboot).
Click to expand...
Click to collapse
Yeah, thank you for this tweak
Orientation has some problems..
getWindowManager().getDefaultDisplay().getRotation()
should return 0, when Orientation is setted to Landscape...
but it returns Surface.ROTATION_90.
(I'm using 0.4a version)
Davide
This is intended behaviour. It fixes the sensor issues for many applications, as developers didn't prepare their apps for devices with natural orientation set to landscape.
Is this causing any problems for you?
Thank you for your reply.
I'm developing an android game that uses accelerometer to evaluate gravity force's vector. I would like to write portable code (to work on both phones and tablets), so the right code to evaluate gravity (ignoring other forces) should be:
screenRotation = getWindowManager().getDefaultDisplay().getRotation();
[...]
float x;
float y;
float z;
if (screenRotation == Surface.ROTATION_0) // Default portrait
{
x = event.values[0];
y = event.values[1];
} else if (screenRotation == Surface.ROTATION_90) // Default landscape
{
x = -event.values[1];
y = event.values[0];
} else if (screenRotation == Surface.ROTATION_180)
{
x = -event.values[0];
y = -event.values[1];
} else// (screenRotation == Surface.ROTATION_270)
{
x = event.values[1];
y = -event.values[0];
}
z = event.values[2];
gravity.x = -x;
gravity.y = -y;
gravity.z = -z;
This should be the right way to ensure portability.. (it's similar to the Nvidia 'Android Accelerometer Whitepaper''s way),
but it's not working with this patch on Folio (y results in reverse, and rotation sensibility is weird)..
So, to ensure compatibility to games coded only for portrait-native oriented (and, in the same time, ensure correctness to the right written codes), it is not enough to return Surface.ROTATION_90 on landscape orientation, but it should emulate it reversing the values returned by onSensorChanged(SensorEvent event).
In other words,
(EMULATED)event.values[0] = (ORIGINAL)event.values[1]
(EMULATED)event.values[1] = -(ORIGINAL)event.values[0]
The patch should do that. Could you verify that on FolioMod? Maybe something got broken when this was ported to tnt.
Also the Nvidia whitepaper states the following for rotating the values:
90°
x = -v[1]
y = -v[0]
180°
x = -v[0]
y = v[1]
270°
x = v[1]
y = v[0]
Also, please check if you are using the newer API for listning to events (the one that uses SensorEventListener) The legacy Api handles rotations by itself, so you should not handle this in your code.
Yes, I'm using SensorEventListener.
weeds2000 said:
Also the Nvidia whitepaper states the following for rotating the values:
90°
x = -v[1]
y = -v[0]
180°
x = -v[0]
y = v[1]
270°
x = v[1]
y = v[0]
Click to expand...
Click to collapse
This is the canonicalToScreen transform for rotating values,
for screen coordinates, increasing y is down (so I'm using world transform).
Sure that the returned value are (for every rotation angle) these:
(EMULATED)event.values[0] = (ORIGINAL)event.values[1]
(EMULATED)event.values[1] = -(ORIGINAL)event.values[0]
?
To understand if it's a my mistake, I've downloaded a free app from the market, JumpyBall 3D Lite, and I noticed that also in this game tilt behaviour is reversed in one direction (could someone test it on the FolioMod?)..
I've checked the code, and yes in the last version for the fix the accelerometer values are rotated in the correct way:
Code:
switch ( sensor.getType() ) {
// ...
case Sensor.TYPE_ACCELEROMETER: {
if ( legacy == false ) {
valuesOut[0] = valuesIn[1];
valuesOut[1] = -valuesIn[0];
}
break;
}
}
However there was an issue with the first release of the fix, as my portrait testgame was using legacy API, and therefore values were somewhat broken.
Maybe only the first version of the patch is in TNT?
By the way, the code that was modified for the fix has been posted in the kernel and tweaks thread. You should be able to verify that TNT has the correct version of the fix or be able to create a patch for TNT. (Do not try to flash the update, it will most certainly break your framework.jar)
Edit:
JumpyBall 3D is working as expected on FolioMod, therefore i think TNT only has the first revision of the patch included.
Ok, thank you!!
Problems
Thanks for a great ROM...
I have a few problems.. Hope someone can help:
Some applications like NFS:Shift and Grooveshark can't access the internet..
Contacts gives a FC..
I can't seem to sync contacts and calendar from my exchange sync.. I can choose to do so, by entering the sync & accounts through pro launcher, but I can't enable sync, so only email works..
I think that was it for now...
Hope someone can help
***Update***
I got contact and calendar sync to work by installing the contacts application from FolioMod and the Calendar app from The TnT Lite mod from Viewsonic...

galaxy ace secret codes and test codes

FIRMWARE VERSION INFORMATION
*#*#1234#*#* - PDA and Phone
*#*#1111#*#* - FTA SW Version
*#*#2222#*#* - FTA HW Version
*#*#44336#*#* - PDA, Phone, CSC, Build Time, Changelist number
*#*#4636#*#*-This code is used to get various information about your phone and battery. It shows following 4 menus on screen:
Phone information
Battery information
Battery history
Usage statistics
*#*#7780#*#*-Factory data reset.It REMOVES:
Google account settings
System and application data and settings
Downloaded applications
It DOES NOT REMOVE:
system software and bundled applications
SD card files
*2767*3855#-WARNING:Factory Reset.This code is used for factory format. It'll remove all files and settings including the internal memory storage. It'll also reinstall the phone firmware.
*#*#273283*255*663282*#*#*-This code opens a File copy screen where you can backup your media files e.g. Images, Sound, Video and Voice memo.
*#*#8255#*#*-This code can be used to launch GTalk Service Monitor.
WLAN, GPS and Bluetooth Test Codes:
*#*#232339#*#* OR *#*#526#*#* OR *#*#528#*#* - WLAN test (Use "Menu" button to start various tests)
*#*#232338#*#* - Shows WiFi MAC address
*#*#1472365#*#* - GPS test
*#*#1575#*#* - Another GPS test
*#*#232331#*#* - Bluetooth test
*#*#232337#*# - Shows Bluetooth device address
VARIOUS FACTORY TESTS
*#*#0283#*#* - Packet Loopback
*#*#0*#*#* - LCD test
*#*#0673#*#* OR *#*#0289#*#* - Melody test
*#*#0842#*#* - Device test (Vibration test and BackLight test)
*#*#2663#*#* - Touch screen version
*#*#2664#*#* - Touch screen test
*#*#0588#*#* - Proximity sensor test
*#*#3264#*#* - RAM version
UPDATE 18/06/2012
ALL SAMSUNG UNLOCK CODE....
---------------------------
*2767*688# = Unlocking Code
*#8999*8378# = All in one Code
*#4777*8665# = GPSR Tool
*#8999*523# = LCD Brightness
*#8999*3825523# = External Display
*#8999*377# = Errors
#*5737425# = JAVA Something{I choose 2 and it chrashed}][/b]
*#2255# = Call List
#*536961# = Java Status Code
#*536962# = Java Status Code
#*536963# = Java Status Code
#*53696# = Java Status Code
#*1200# = AFC DAC Val
#*1300# = IMEI
#*1400# = IMSI
#*2562# = ??? White for 15 secs than restarts.
#*2565# = Check Blocking
#*3353# = Check Code
#*3837# = ??? White for 15 secs than restarts.
#*3849# = ??? White for 15 secs than restarts.
#*3851# = ??? White for 15 secs than restarts.
#*3876# = ??? White for 15 secs than restarts.
#*7222# = Operation Typ (Class C GSM)
#*7224# = I Got !! ERROR !!
#*7252# = Operation Typ (Class B GPRS)
#*7271# = Multi Slot (Class 1 GPRS)
#*7274# = Multi Slot (Class 4 GPRS)
#*7276# = Dunno
#*7337# = EEPROM Reset (Unlock and Resets Wap Settings)
#*2787# = CRTP ON/OFF
#*3737# = L1 Dbg data
#*5133# = L1 Dbg data
#*7288# = GPRS Attached
#*7287# = GPRS Detached
#*7666# = SrCell Data
#*7693# = Sleep Act/DeAct (Enable or Disable the Black screen after doing nothing for a while)
#*7284# = Class : B,C or GPRS
#*2256# = Calibration Info
#*2286# = Battery Data
#*2527# = GPRS Switching (set to: class 4, class 8, class 9 or class 10)
#*2679# = Copycat feature (Activate or Deactivate)
#*3940# = External loop test 9600 bps
#*4263# = Handsfree mode (Activate or Deactivate)
#*4700# = Half Rate (Activate or Deactivate)
#*7352# = BVMC Reg value
#*8462# = Sleeptime
#*2558# = Time ON
#*3370# = EFR (Activate or Deactivate)
#*3941# = External looptest 115200 bps
#*5176# = L1 Sleep
#*7462# = SIM phase
#*7983# = Voltage/Frequenci (Activate or Deactivate)
#*7986# = Voltage (Activate or Deactivate)
#*8466# = Old time
#*2255# = Call ???
#*5187# = L1C2G trace (Activate or Deactivate)
#*5376# = ??? White for 15 secs than restarts.
#*6837# = Official Software Version
#*7524# = KCGPRS
#*7562# = LOCI GPRS
#*7638# = RLC allways open ended TBF (Activate or Deactivate)
#*7632# = Sleep mode Debug
#*7673# = Sleep mode RESET
#*2337# = Permanent Registration Beep
#*2474# = ???
#*2834# = Audio Path
#*3270# = DCS support (Activate or Deactivate)
#*3282# = Data (Activate or Deactivate)
#*3476# = EGSM (Activate or Deactivate)
#*3676# = Flash volume formated
#*4760# = GSM (Activate or Deactivate)
#*5171# = L1P1
#*5172# = L1P2
#*5173# = L1P3
#*7326# = Accessory (I got Vibrator)
#*7683# = Sleep variable (8)
#*7762# = SMS Brearer CS (Activate or Deactivate)
#*8465# = Time in L1
#*9795# = wtls key
#*2252# = Current CAL
#*2836# = AVDDSS Management (Activate or Deactivate)
#*3877# = Dump of SPY trace
#*7728# = RSAV done# (Everything went to standart but nothing was deleted)
#*2677# = ARM State (None or Full Rate)
*#8999*636# = Have no clue what it is, i see 20 lines
*#9999# = Software version
*#8999*8376263# = HW ver, SW ver and Build Date
*#8888# = HW version
*#8377466# = Same HW/SW version thing
*#7465625# = Check the locks
*7465625*638*Code# = Enables Network lock
#7465625*638*Code# = Disables Network lock
*7465625*782*Code# = Enables Subset lock
#7465625*782*Code# = Disables Subset lock
*7465625*77*Code# = Enables SP lock
#7465625*77*Code# = Disables SP lock
*7465625*27*Code# = Enables CP lock
#7465625*27*Code# = Disables CP lock
*7465625*746*Code# = Enables SIM lock
#7465625*746*Code# = Disables SIM lock
*7465625*228# = Activa lock ON
#7465625*228# = Activa lock OFF
*7465625*28638# = Auto Network lock ON
#7465625*28638# = Auto Network lock OFF
*7465625*28782# = Auto subset lock ON
#7465625*28782# = Auto subset lock OFF
*7465625*2877# = Auto SP lock ON
#7465625*2877# = Auto SP lock OFF
*7465625*2827# = Auto CP lock ON
#7465625*2827# = Auto CP lock OFF
*7465625*28746# = Auto SIM lock ON
#7465625*28746# = Auto SIM lock OFF
*2767*3855# = E2P Full Reset
*2767*2878# = E2P Custom Reset
*2767*927# = E2P Wap Reset
*2767*226372# = E2P Camera Reset
#*6420# = MIC Off
#*6421# = MIC On
#*6422# = MIC Data
#*6428# = MIC Measurement
#*3230# = Trace enable and DCD disable
#*3231# = Trace disable and DCD enable
#*3232# = Current Mode
#7263867# = RAM Dump (On or Off)
*2767*49927# = Germany WAP Settings
*2767*44927# = UK WAP Settings
*2767*31927# = Netherlands WAP Settings
*2767*420927# = Czech WAP Settings
*2767*43927# = Austria WAP Settings
*2767*39927# = Italy WAP Settings
*2767*33927# = France WAP Settings
*2767*351927# = Portugal WAP Settings
*2767*34927# = Spain WAP Settings
*2767*46927# = Sweden WAP Settings
*2767*380927# = Ukraine WAP Settings
*2767*7927# = Russia WAP Settings
*2767*30927# = GREECE WAP Settings
*2767*73738927# = WAP Settings Reset
*2767*49667# = Germany MMS Settings
*2767*44667# = UK MMS Settings
*2767*31667# = Netherlands MMS Settings
*2767*420667# = Czech MMS Settings
*2767*43667# = Austria MMS Settings
*2767*39667# = Italy MMS Settings
*2767*33667# = France MMS Settings
*2767*351667# = Portugal MMS Settings
*2767*34667# = Spain MMS Settings
*2767*46667# = Sweden MMS Settings
*2767*380667# = Ukraine MMS Settings
*2767*7667#. = Russia MMS Settings
*2767*30667# = GREECE MMS Settings
*335# = Delete all MMS Messages
*663867# = Dump Mm file
#*536961# = WAPSAR enable / HTTP disable
#*536962# = WAPSAR disable / HTTP enable
#*536963# = Serial eable / Others disable
#*53696# = Java Download Mode
#*5663351# = Wap Model ID [Your Model]
#*5663352# = Wap Model ID [SEC-SGHXXXX/1.0]
#*566335# = Wap Model ID [SEC-SGHXXXX/1.0]
*2767*66335# = Check on which model it is
*2767*7100# = SEC-SGHS100/1.0
*2767*8200# = SEC-SGHV200/1.0
*2767*7300# = SEC-SGHS300/1.0
*2767*7650# = Nokia7650/1.0
*2767*2877368# = Reset WAP Model ID to standart
I hope you enjoy it
DO ANYTHING AT YOUR OWN RISK!
IF YOU DO NOT KNOW WHAT YOU ARE DOING PLS DO NOT DO IT!
I never knew there were so many codes!
Thanks!
Sent from my GT-S5830 using Tapatalk 2
i will update it as soon as i find some more working
i have a file full of codes but i have to tes them before post
in 1 or 2 days it will be updated
thankyou brother
do you know how to change regional with a screet code?
sorry for my bad english
what do you mean by regional?
you need sim unlock code?or something else?
stealthware said:
thankyou brother
do you know how to change regional with a screet code?
sorry for my bad english
Click to expand...
Click to collapse
*272*yourimeinumber#
You cam find your imei with this code.
*#06#
Sent from my GT-S5830 using Tapatalk 2
Awesome
Thanks
kumicho said:
what do you mean by regional?
you need sim unlock code?or something else?
Click to expand...
Click to collapse
not sim unlock code, but the regional restore for readability if there is an update on Kies
for example the base regional ddkq8 is indan firmware, i want to regional indonesian is xse. without replacing the firmware can be used a screet code
sorry for bad english
---------- Post added at 03:24 PM ---------- Previous post was at 03:21 PM ----------
galaxyace152 said:
*272*yourimeinumber#
You cam find your imei with this code.
*#06#
Sent from my GT-S5830 using Tapatalk 2
Click to expand...
Click to collapse
thankyou brother for info
like it
great
thanks for that thorough list of codes, this might come in handy sometime!
Thanks for the huge collection.
Sent from my GT-S5830 using Tapatalk 2
factory data reset
It is an awesome list you gave us. Thanx
I just want to know...if i type *#*#7780#*#* it will leave my cell phone as when i took it out of the box??
or is it the one with *2767*3855#? and will it restore apps i erased with root superuser??
thanks
Great...but
These codes posted are definitely a great collection, wonderful I would say. But beware, some websites may utilise these code to hack your phone. Like for example, the website may just dial one of the reset codes and reset the entire phone. This is definitely not a very great experience. There is a solution thou, by installing a third party dialer to prevent these codes from executing.
stevenkyk said:
These codes posted are definitely a great collection, wonderful I would say. But beware, some websites may utilise these code to hack your phone. Like for example, the website may just dial one of the reset codes and reset the entire phone. This is definitely not a very great experience. There is a solution thou, by installing a third party dialer to prevent these codes from executing.
Click to expand...
Click to collapse
Elaborate on how we can protect ourselves from said threat.
Sent from my GT-S5830 using xda app-developers app

Camera Flashlight stooped working after upgrade, help pls!

Hello all,
I have flashed a no-name tablet and all working fine except for LED flash.
Ran Z-Devices app and it shows that the LED is not present. I am assuming that it is not installing.
Tried a torch app but no light found. (Uninstalled quickly.)
Flashed a different ROM:
Flashlight works but no WiFi - So not hardware related
I've had a poke around and hope this helps
\system\etc\camera.cfg
Line 69: used_flash_mode = 0
Line 70: key_support_flash_mode = on,torch,off
Line 71: key_default_flash_mode = on
Line 145: used_flash_mode = 0
Line 146: key_support_flash_mode = on,torch,off
Line 147: key_default_flash_mode = on
Sysconfig.lhs:
vip_dev0_flash_en = port: power1<1><0>
vip_dev0_flash_mode =
vip_dev0_af_pwdn =
and
vip_dev1_flash_en =
vip_dev1_flash_mode =
I'm a relative newb but am quite happy to manually edit any files that need to be modified.
Could someone give me some suggestion as to where to look to solve this? Or what other file information you require?

[Tutorial]How to Work Dolphin in Switch.

Hello everyone, tried to make dolphin work. They will have been stuck in two steps.
Q 1):Dolphin asks OpenGL and Switch does not support OpenGL (at the moment)
A: Go to the Graphics section, and we change OpenGL, for Vulkan.
2):Enter the game and now work. and you'll see joycons don't work.
Q: What do we do now? How do we operate the joycons?
A: You can try to configure the buttons, but the analogs do not work, at least for what I have been testing on my switch, but I have found a solution, temporary until it is solved. Octopus. It's an APK, I was mapping and it really worked.
But you will see the screen as the controls move. LOL
Octopus.
https://play.google.com/store/apps/details?id=com.chaozhuo.gameassistant
OCTOPUS RECOMMENDS YOU TO INSTALL THIS ADDON
https://play.google.com/store/apps/details?id=com.chaozhuo.gameassistant.plugin
Surely you will be wondering. So this works for all games? At the moment I have tried several games, and they have worked for me. but some ask you PLAY GOOGLE. AND THAT IS PAID.
Edit:Joystick already works, you have to install a fix.
Fix Joycon
Installation example Youtube
Thanks to 4KZelda for the patch and gavin_darkglider for building it.
Fix at bottom of post doesnt work
I just tried the patch at the bottom called joycon fix.. It doesnt work, everything is the same as before. All joycon buttons work but thumbsticks still do not
did you mount your system partition before flashing?
nex86 said:
did you mount your system partition before flashing?
Click to expand...
Click to collapse
My guess is Joycons will continue to have issues until we get proper drivers written for them. Currently android sees them as digital pads instead of analogs sticks and this makes a big difference. Hopefully someone will be able to write/port proper drivers for us.
If anyone is struggling with performance even you tried adjusting the perf profile, I use weihuoya's Dolphin build on github and an .ini template designed for Nvidia Shield.
Code:
[ActionReplay]
[ActionReplay_Enabled]
[Core]
CPUThread = True
GFXBackend = Vulkan
CPUCore = 4
FPRF = False
DSPHLE = True
EmulationSpeed = 1.0
OverclockEnable = True
Overclock = 1.0
SyncGPU = False
FastDiscSpeed = True
GPUDeterminismMode = none
MMU = False
ProgressiveScan = True
SyncOnSkipIdle = False
PAL60 = False
[Video_Settings]
InternalResolution = 1
ShaderCompilationMode = 0
WaitForShadersBeforeStarting = False
SafeTextureCacheColorSamples = 128
wideScreenHack = False
MSAA = 0
SSAA = False
FastDepthCalc = True
EnablePixelLighting = False
DisableFog = True
HiresTextures = True
[Video_Enhancements]
MaxAnisotropy = 0
ForceFiltering = False
PostProcessingShader =
ForceTrueColor = True
DisableCopyFilter = True
ArbitraryMipmapDetection = False
[Video_Hacks]
EFBToTextureEnable = True
EFBScaledCopy = False
EFBAccessEnable = False
EFBEmulateFormatChanges = False
BBoxEnable = False
VertexRounding = False
XFBToTextureEnable = True
ImmediateXFBenable = True
[Video_Hardware]
VSync = False
[DSP]
#### EnableJIT = True
Save as <GameID>.ini and copy to /storage/emulated/0/dolphin-mmj/GameSettings
For New Super Mario Bros. Wii, it'll be SMNP01.ini , GMSP01.ini for Super Mario Sunshine.
Hope this helps!
nex86 said:
did you mount your system partition before flashing?
Click to expand...
Click to collapse
yes I mounted system and vendor
SamuraiDojo said:
yes I mounted system and vendor
Click to expand...
Click to collapse
It works for me, I also tell you. This is a temporary solution, try flashing again.
Chiveta said:
It works for me, I also tell you. This is a temporary solution, try flashing again.
Click to expand...
Click to collapse
I tried it twice already but, I guess I can try again later. Third times a charm I guess lol
SamuraiDojo said:
I tried it twice already but, I guess I can try again later. Third times a charm I guess lol
Click to expand...
Click to collapse
Hey @SamuraiDojo You can try flash my joycon fix(They are based on those of GTA, but with the switch style. this could solve it temporarily)
https://forum.xda-developers.com/nintendo-switch/nintendo-switch-news-guides-discussion--development/mods-fix-problems-switch-android-t3954140
Thanks for the info - had lots of luck with this build:
https://github.com/weihuoya/dolphin/releases/tag/5.0-9494
Official ran a bit slow, tested only with Luigi's Mansion USA.
Joycon joystick fix!!!
for anyone that can configure the joysticks on dolphin but cant use them in game, go to the twrp menu, then mount, and in the corner it'll say something about read only, uncheck that, mount everything, and then reflash, it will then work ingame
dunno what im doing wrong but i only acheive 91% tops on wind waker on the starting island.

Allwinner A20 Tv box. Need help.

Hello,
I have an android tv box witch i get from an shop with an problem. the box itself quit playing anithing after some minutes, but in general it was working. So i decided to rebuilt it with some images of tv boxes from net. The box itself has an A20 cpu and 512M Ram. But for what i am needed it is very good. Some youtube, some stram from my server etc...
The big problem is of course the firmware, android version that i have found was not so copatible with the board. The only android version that it works it is some version of 4.2.2. from an development board "Mars Board"
Any way, with this image the board it is working quite good but has some problems:
1. The sd card solt is not seen, but in setting i have alot of sd card places with grid display. What i mean is that i have many sd-cards displayed but none is my sd card. I
try to du some modds in init.rc file with no succes.
2. Pal output for my old crt tv is working only if i set on display option 2 and type 11 (PAL) with one common screen set. (HDMI/CVBS). Again i made some modds in ssycofig1 file with no succes. Pal output in CVBS only with low desity display, Any other set will do an NTSC output with no image on my old TV.
3. The original firmware was ZX_R3.2.6 with 3.4.39 kernel.
My settings for tv out is:
[disp_init]
disp_init_enable = 1
disp_mode = 0
screen0_output_type = 2
screen0_output_mode = 11
screen1_output_type = 3
screen1_output_mode = 4
fb0_framebuffer_num = 2
fb0_format = 10
fb0_pixel_sequence = 0
fb0_scaler_mode_enable = 1
fb0_width = 0
fb0_height = 0
Anybody help?
Thank you!

Categories

Resources