Use 268Mhz instead of 804Mhz and disable L2 Cache for power saving.
This commit is contained in:
parent
fc6e7f75af
commit
955c575891
8 changed files with 12 additions and 10 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -8,3 +8,5 @@ C/build/
|
|||
*.pnproj
|
||||
*.pnps
|
||||
*.ppg
|
||||
*.smdh
|
||||
*.elf
|
||||
|
|
|
@ -67,7 +67,7 @@ device = {
|
|||
],
|
||||
}
|
||||
|
||||
ui = UInput(device, name="3DS", phys="3ds-uinput", vendor=0x1, version=0x1, product=0x1)
|
||||
ui = UInput(device, name="3DS", phys="3ds", vendor=0x1, version=0x1, product=0x1)
|
||||
|
||||
gyroAxis = {
|
||||
e.EV_ABS: [
|
||||
|
@ -80,7 +80,7 @@ gyroAxis = {
|
|||
]
|
||||
}
|
||||
|
||||
uiGyro = UInput(gyroAxis, name="3DS Gyroscope", phys="3ds-sensors", vendor=0x2, version=0x2, product=0x2, input_props=[6])
|
||||
uiGyro = UInput(gyroAxis, name="3DS Gyroscope", phys="3ds", vendor=0x1, version=0x1, product=0x2, input_props=[6])
|
||||
|
||||
if (debug):
|
||||
print (ui)
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -32,9 +32,9 @@ SOURCES := source
|
|||
DATA := data
|
||||
INCLUDES := include
|
||||
|
||||
APP_TITLE := 3DS Controller
|
||||
APP_DESCRIPTION :=
|
||||
APP_AUTHOR := CTurt
|
||||
APP_TITLE := 3DS Controller-NG
|
||||
APP_DESCRIPTION := Program to use your 3DS as a controller in your PC
|
||||
APP_AUTHOR := CTurt/Fijxu
|
||||
ICON := cxi/icon48x48.png
|
||||
|
||||
#---------------------------------------------------------------------------------
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
BasicInfo:
|
||||
Title : "3DS Controller"
|
||||
Title : "3DS Controller-NG"
|
||||
ProductCode : "CTR-N-3DSC"
|
||||
Logo : Nintendo # Nintendo / Licensed / Distributed / iQue / iQueForSystem
|
||||
|
||||
|
@ -63,7 +63,7 @@ AccessControlInfo:
|
|||
IdealProcessor : 0
|
||||
AffinityMask : 1
|
||||
Priority : 16
|
||||
MaxCpu : 0x9E # Default
|
||||
MaxCpu : 0 # Default
|
||||
HandleTableSize : 0x200
|
||||
DisableDebug : true
|
||||
EnableForceDebug : false
|
||||
|
@ -77,9 +77,9 @@ AccessControlInfo:
|
|||
|
||||
# New3DS Exclusive Process Settings
|
||||
SystemModeExt : Legacy # Legacy(Default)/124MB/178MB Legacy:Use Old3DS SystemMode
|
||||
CpuSpeed : 804MHz # 256MHz(Default)/804MHz
|
||||
EnableL2Cache : true # false(default)/true
|
||||
CanAccessCore2 : true
|
||||
CpuSpeed : 268MHz # 256MHz(Default)/804MHz
|
||||
EnableL2Cache : false # false(default)/true
|
||||
CanAccessCore2 : false
|
||||
|
||||
# Virtual Address Mappings
|
||||
IORegisterMapping:
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 766 B After Width: | Height: | Size: 4.7 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 5 KiB |
Loading…
Reference in a new issue