Oppo Heads Up
vining
Posts: 4,368
A few month back I updated the fw on an Oppo BDP-103 and I recently received the word that forward and rewind no longer work. In Oppos Proto v1.1 you just had to send "'#REV',$0D" or "'#FWD',$0D" but now in Proto v1.2.2 you have to send a speed parameter as well.
so now it need to be:
"'#REV 1/16',$0D" or "'#FWD 3',$0D"
it also means that in order to sequence through the speeds you have to track and store your current speed so for a quick fix I just did:
REV 1/16 1/8 1/4 1/2 1 2 3 4 5 Set Fast Reverse Play speed. FWD 1/16 1/8 1/4 1/2 1 2 3 4 5 Set Fast Forward Play speed.
so now it need to be:
"'#REV 1/16',$0D" or "'#FWD 3',$0D"
it also means that in order to sequence through the speeds you have to track and store your current speed so for a quick fix I just did:
(* FYI, speed is received and the tracking var set in the RX parsing not here *) if(sOppo.sFB[DVD_FB_PLYBAK_STAT].nValue != PLYBAK_STAT_FFWD) { sOppo.cREWFWD_Spd = ''; } SWITCH(sOppo.cREWFWD_Spd) { CASE'1/16': {cSpd = '1/8';} CASE'1/8': {cSpd = '1/4';} CASE'1/4': {cSpd = '1/2';} CASE'1/2': {cSpd = '1';} CASE'1': {cSpd = '2';} CASE'2': {cSpd = '3';} CASE'3': {cSpd = '4';} CASE'4': {cSpd = '5';} CASE'5': {cSpd = '1/16';} DEFAULT: {cSpd = '1/16';} } fnDEV_Q_Cmd(TX_CMD_ARRY[TX_CMD_INDX_FWD],cSpd); same thing for reverse.I used a common var for both fwd and rev that resets on any other transport press. It would had been nice if Oppo kept the old method still valid so if no spd parameter is sent, don't throw an error but sequence through the speeds as it did before. Doesn't make sense to make us track this, should just be a simple toggle sequence the way it was.
0
Comments