
HELP...
How about running the ribbon cable on the outside of the cage and stick it in place using silver insulation tape used for holding insulation in walls, which conducts power, and that would increase the cage's shielding ability over the top of your analog cables?. If you don't want to solder to the AVI connector pins, there are other points on the board that have the same signal on them. Look at the SickMods Sound Activated LED drive kits and on there diagram they use alternative points to pick up the left and right audio channel signals. Maybe these would be of use and more convenient.professor_jonny wrote:
Would the flat ribbon style cables as used in the cr3pro etc suitable to carry video signals from the audio port of the xbox ?
I know they are used for usb signals on the demon kits but i dont know much about analogue video signals?
this may be of help to youb9b9b9 wrote:Any news about the tutorial?
Just need to know from where to get the YPbPr/Audio signals and the power supply....
I'm assuming that just solders over the AV pins? like a quick solder job, if so I will buy one if you get them made.professor_jonny wrote:This is what I come up with with a quick hack up it probally wont fit as i just went off pictures on the net at the connector pin out.
It possibly needs a reset pin so that if you reboot the xbox it will look for a new av set if it changed and the ground plane is ready to join to the rg316 cable with minimal effort in soldering.
The micro could be connected to a binary or 3 position switch to make things easier in selecting an av pack mode you could use the inputs to detect the av pack selected then flip them to outputs if no ground is detected after reset to automatically select a specific pack type if nothing is plugged in.
yip that was the plan just something cheap and tidy to make it easy to install pre wired with wifi cable on it ready to remove the plugs hdmi converter at the other end and solder the rg316 directly to the converter.Rocky5 wrote: I'm assuming that just solders over the AV pins? like a quick solder job, if so I will buy one if you get them made.
Code: Select all
'XBOX AVIP selector:
'By professor_jonny
'program to automatically set a default av pack type if no av pack
'is plugged into the xbox at boot up.
{ ;Symbols
symbol varA = b0
symbol varB = b1
symbol varC = b2
symbol varD = b3
symbol varE = b4
symbol varF = b5
symbol varG = b6
symbol varH = b7
symbol varI = b8
symbol varJ = b9
symbol varK = b10
symbol varL = b11
symbol varM = b12
symbol varN = b13
symbol varO = b14
symbol varP = b15
symbol varQ = b16
symbol varR = b17
symbol varS = b18
symbol varT = b19
symbol varU = b20
symbol varV = b21
symbol varTEMPBYTE1 = b22
symbol varTEMPBYTE2 = b23
symbol varTEMPBYTE3 = b24
symbol varTEMPBYTE4 = b25
symbol varTEMPBYTE5 = b26
symbol varTEMPBYTE6 = b27
symbol varTEMPWORD1 = w11
symbol varTEMPWORD2 = w12
symbol varTEMPWORD3 = w13
}
main:
Start:
pullup %00000111 'enable internal pullup resistors
'on port c pins
input B.1, B.2, B.3 'Set mode select pins as inputs
pause 200 'wait .2 sec before checking
if pinB.3=0 AND pinB.4=0 AND pinB.5=0 then 'if no AV pack is plugged in
goto AVpack_not_detected
end if
goto Xbox_reset_Check 'Pack detected wait for Xbox reset
'to check for new pack
AVpack_not_detected: 'Check mode select jumpers
'and set aproprate pack type
output B.1, B.2, B.3 'Set mode select terminals
'as outputs
if pinC.0=1 AND pinC.1=1 AND pinC.2=0 then 'Mode 110 standard AV jumper select
goto Set_standard_AV_pack
end if
if pinC.0=1 AND pinC.1=0 AND pinC.2=0 then 'Mode 100 advanced AV jumper select
goto Set_advanced_AV_pack
end if
if pinC.0=0 AND pinC.1=0 AND pinC.2=1 then 'Mode 001 component AV jumper select
goto Set_component_AV_pack
end if
if pinC.0=1 AND pinC.1=1 AND pinC.2=0 then 'Mode 010 VGA AV jumper select
goto Set_VGA_AV_pack
end if
if pinC.0=0 AND pinC.1=0 AND pinC.2=0 then 'Mode 000 RGB AV jumper select
goto Set_RGB_AV_pack
end if
goto Set_component_AV_pack 'if no jumper is selected select
'Mode 110 component AV
Set_standard_AV_pack: 'Set mode 110 standard AV
high B.1, B.2
low B.3
goto Xbox_reset_Check
Set_advanced_AV_pack: 'Set mode 100 Advanced AV
high B.1
low B.2, B.3
goto Xbox_reset_Check
Set_component_AV_pack: ''Set mode 001 component AV
high B.3
low B.1, B.2
goto Xbox_reset_Check
Set_VGA_AV_pack: 'Set mode 010 VGA AV
high B.2
low B.1, B.3
goto Xbox_reset_Check
Set_RGB_AV_pack: 'Set mode 000 RGB AV
low B.1, B.2, B.3
goto Xbox_reset_Check
Xbox_reset_Check:
if pinC.3=1 then 'If Xbox is reset restart pack check
goto Start
end if
goto Xbox_reset_Check
#no_data 'reduce download time
sweet man im definently up to purchasing one of these once its all finished and stuff, have you thought about prices and stuff?professor_jonny wrote:So I have spent a bit more time and added buffered h and v sync signals for vga output and made it so it actually fits on a 1.0-1.1 xbox I dont know if it would fit others I dont have any other models to look at.
I have a micro to be able to test the program operates correctly and check the signal voltages and i hope to bread board it all up to check it all works while im on holiday