PID $0173: Nokia32 - KM question

Discussion forum for JP1 software tools currently in use, or being developed, such as IR, KM, RemoteMaster, and other misc apps/tools.

Moderator: Moderators

Post Reply
The Robman
Site Owner
Posts: 22063
Joined: Fri Aug 01, 2003 9:37 am
Location: Chicago, IL
Contact:

PID $0173: Nokia32 - KM question

Post by The Robman »

Mike,
I'm in the process of converting "Manual Settings" files to use the official protocol, when one is available, and I noticed that for Nokia32 when you select Break=1 KM says that the protocol is not available.

I took a quick glance at the executor code and I see that it is testing the bit that gets set, though I didn't check to see what it does.

What's the story with this setting?

Here's a file that uses the bit in question:
https://www.hifi-remote.com/forums/dload ... le_id=1791
Last edited by The Robman on Wed Oct 06, 2010 3:31 pm, edited 2 times in total.
Rob
www.hifi-remote.com
Please don't PM me with remote questions, post them in the forums so all the experts can help!
mr_d_p_gumby
Expert
Posts: 1370
Joined: Sun Aug 03, 2003 12:13 am
Location: Newbury Park, CA

Post by mr_d_p_gumby »

The Break function requires variant 1 of the protocol. Apparently, the logic in p-work!G54 did not encompass the case where a protocol upgrade would be required. You can change the logic as shown below for now, and I'll have to fix this for the next release.

CHANGE:
=IF(required_version<0,IF(ABS(required_version)<protocol_version,ABS(required_version),protocol_version),protocol_version_default)
TO:
=IF(required_version<0,IF(ABS(required_version) < IF(protocol_version=0,protocol_version_default,protocol_version),ABS(required_version), IF(protocol_version=0,protocol_version_default,protocol_version)),protocol_version_default)
The Robman
Site Owner
Posts: 22063
Joined: Fri Aug 01, 2003 9:37 am
Location: Chicago, IL
Contact:

Post by The Robman »

Thanks Mike, as 9.20 is still so new, I fixed it in that version. Just remember to fix it on your end so 9.21 doesn't undo it! :)
Rob
www.hifi-remote.com
Please don't PM me with remote questions, post them in the forums so all the experts can help!
Post Reply