Page 1 of 1
More double skipping
Posted: Sat Oct 23, 2010 12:43 pm
by alanrichey
Rob
Could you tell me which byte needs changing in the Streamzap protocol needs changing to remove repeats (assuming it is possible)
Code.S3C80=43 8C 11 8B 13 85 85 10 08 06 01 A6 01 92 01 A6 01 92 A3 34 01 A6 00 00 10 04 C0 03 08 00 27 0D 03 8D 01 46
The remote involved is at
https://www.hifi-remote.com/forums/dload ... le_id=6528
Cheers
Al
Re: More double skipping
Posted: Sat Oct 23, 2010 3:16 pm
by The Robman
Change "85 85" to "85 84"
alanrichey wrote:Code.S3C80=43 8C 11 8B 13 85 84 10 08 06 01 A6 01 92 01 A6 01 92 A3 34 01 A6 00 00 10 04 C0 03 08 00 27 0D 03 8D 01 46
Re: More double skipping
Posted: Sun Oct 24, 2010 10:51 am
by eferz
alanrichey wrote:Code.S3C80=43 8C 11 8B 13 85 84 10 08 06 01 A6 01 92 01 A6 01 92 A3 34 01 A6 00 00 10 04 C0 03 08 00 27 0D 03 8D 01 46
The Robman wrote:Change "85 85" to "85 84"
Just want to verify my assumption, since it seems that it is usually the first bit of the 7th byte of that line. At least, that's reoccurring theme from this
thread.
85h = 1000 010
1b = Repeat Enabled
84h = 1000 010
0b = Repeat Disabled
Is it safe to assume that if the 7th byte is an "odd" number then the pf1 register is set to repeat. Assuming "B", "D", "F" are considered "odd" digits of course. So, in these cases reducing the seventh digit by a single bit will disable the repeats.
Posted: Sun Oct 24, 2010 12:06 pm
by The Robman
For simple protocols that don't require much assembler, that is generally true. Just FYI, what I do to answer questions like this is I paste the protocol code into Protocol Builder and let it decode the protocol, then I look at the assembler to see how it works.
Posted: Sat Oct 30, 2010 4:05 am
by alanrichey
Rob: The User reports the new remote works perfectly, many thanks
Posted: Sat Oct 30, 2010 11:07 am
by The Robman
you're welcome