Re: [concordance-devel] Harmony 300

2013-07-23 Thread Demetrio
Workaround to add a delay: setup another fake device and choose it in Setup Watch TV where you need delay. It's clear, delay duration depends of device you choose... Demetrio 2013/7/23 Scott Talbert s...@techie.net On Mon, 22 Jul 2013, Sancho wrote: There are a few specialties about my

Re: [concordance-devel] [PATCH] Fix serial number handling for ZWave-HID remotes. Use the normal byte ordering for them. Additionally, we were off by one byte when copying the the serial number data i

2013-07-23 Thread Phil Dibowitz
On 07/05/2013 08:14 PM, Scott Talbert wrote: Signed-off-by: Scott Talbert s...@techie.net Can you use the format that git expects for format-patch? i.e. a one-line title/description followed by two newlines, followed by the longer description if necessary? format-patch should then use the first

Re: [concordance-devel] [PATCH] Fix serial number handling for ZWave-HID remotes. Use the normal byte ordering for them. Additionally, we were off by one byte when copying the the serial number data i

2013-07-23 Thread Scott Talbert
On Tue, 23 Jul 2013, Phil Dibowitz wrote: Can you use the format that git expects for format-patch? i.e. a one-line title/description followed by two newlines, followed by the longer description if necessary? format-patch should then use the first for the subject and the rest for the body...

Re: [concordance-devel] [PATCH] Fix serial number handling for ZWave-HID remotes. Use the normal byte ordering for them. Additionally, we were off by one byte when copying the the serial number data i

2013-07-23 Thread Scott Talbert
On Tue, 23 Jul 2013, Phil Dibowitz wrote: //memcpy(data, pkt + 6, len); -memcpy(data, pkt + 1, len + 3); +/* + * pkt[0] is the index of the last byte, which means it is equal to the + * length of the packet minus one byte. We want to copy everything but the + *

[concordance-devel] [PATCH] Fix serial number handling for ZWave-HID remotes.

2013-07-23 Thread Scott Talbert
Use the normal byte ordering for them. Additionally, we were off by one byte when copying the the serial number data in UDP_Read(). Signed-off-by: Scott Talbert s...@techie.net --- libconcord/remote.cpp | 4 ++-- libconcord/remote_z.cpp | 9 ++--- 2 files changed, 8 insertions(+), 5