-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feat-risco_pir_rwx95p
- Loading branch information
Showing
10 changed files
with
189 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
/** @file | ||
Rosstech Digital Control Unit DCU-706/Sundance. | ||
Copyright (C) 2023 suaveolent | ||
This program is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation; either version 2 of the License, or | ||
(at your option) any later version. | ||
*/ | ||
|
||
#include "decoder.h" | ||
|
||
/** @fn int rosstech_dcu706_decode(r_device *decoder, bitbuffer_t *bitbuffer) | ||
Rosstech Digital Control Unit DCU-706/Sundance/Jacuzzi. | ||
Supported Models: | ||
Sundance DCU-6560-131, SD-880 Series, PN 6560-131 | ||
Jacuzzi DCU-2560-131, Jac-J300/J400 and SD-780 series, PN 6560-132/2560-131 | ||
Data coding: | ||
UART 8o1: 11 bits/byte: 1 start bit (1), odd parity, 1 stop bit (0). | ||
Data layout: | ||
SS IIII TT CC | ||
- S: 8 bit sync byte and type of transmission | ||
- I: 16 bit ID | ||
- T: 8 bit temp packet in degrees F | ||
- C: 8 bit Checksum: Count 1s for each bit of each element: | ||
Set bit to 1 if number is even 0 if odd | ||
*/ | ||
|
||
static int rosstech_dcu706_decode(r_device *decoder, bitbuffer_t *bitbuffer) | ||
{ | ||
uint8_t const preamble_data_transmission[] = {0xDD, 0x40}; | ||
// The Bond command also contains the temperature | ||
uint8_t const preamble_Bond[] = {0xCD, 0x00}; | ||
int const preamble_length = 11; | ||
|
||
// We need 55 bits | ||
uint8_t msg[7]; | ||
|
||
if (bitbuffer->num_rows != 1 | ||
|| bitbuffer->bits_per_row[0] < 55 | ||
|| bitbuffer->bits_per_row[0] > 300) { | ||
decoder_logf(decoder, 2, __func__, "bit_per_row %u out of range", bitbuffer->bits_per_row[0]); | ||
return DECODE_ABORT_EARLY; // Unrecognized data | ||
} | ||
|
||
unsigned start_pos = bitbuffer_search(bitbuffer, 0, 0, preamble_data_transmission, preamble_length); | ||
|
||
if (start_pos == bitbuffer->bits_per_row[0]) { | ||
|
||
start_pos = bitbuffer_search(bitbuffer, 0, 0, preamble_Bond, preamble_length); | ||
|
||
if (start_pos == bitbuffer->bits_per_row[0]) { | ||
return DECODE_ABORT_LENGTH; | ||
} | ||
} | ||
|
||
if (start_pos + 55 > bitbuffer->bits_per_row[0]) { | ||
return DECODE_ABORT_LENGTH; | ||
} | ||
|
||
bitbuffer_extract_bytes(bitbuffer, 0, start_pos, msg, sizeof(msg) * 8); | ||
|
||
uint8_t b[5] = {0}; | ||
unsigned r = extract_bytes_uart_parity(msg, 0, 55, b); | ||
if (r != 5) { | ||
decoder_logf(decoder, 2, __func__, "UART decoding failed. Got %d of 5 bytes", r); | ||
return DECODE_ABORT_LENGTH; | ||
} | ||
|
||
int msg_type = b[0]; // S | ||
int id = (b[1] << 8) | (b[2]); // I | ||
int temp_f = b[3]; // T | ||
int checksum = b[4]; // C | ||
|
||
uint8_t calculated = 0xff ^ xor_bytes(b, 4); | ||
if (calculated != checksum) { | ||
decoder_logf(decoder, 2, __func__, "Checksum failed. Expected: %02x, Calculated: %02x", checksum, calculated); | ||
return DECODE_FAIL_MIC; | ||
} | ||
|
||
/* clang-format off */ | ||
data_t *data = data_make( | ||
"model", "Model", DATA_STRING, "Rosstech-Spa", | ||
"id", "ID", DATA_FORMAT, "%04x", DATA_INT, id, | ||
"msg_type", "Transmission Type", DATA_STRING, msg_type == 0xba ? "Data" : "Bond", | ||
"temperature_F", "Temperature", DATA_FORMAT, "%d F", DATA_INT, temp_f, | ||
"mic", "Integrity", DATA_STRING, "CHECKSUM", | ||
NULL); | ||
/* clang-format on */ | ||
|
||
decoder_output_data(decoder, data); | ||
return 1; | ||
} | ||
|
||
static char const *const output_fields[] = { | ||
"model", | ||
"id", | ||
"msg_type", | ||
"temperature_F", | ||
"mic", | ||
NULL, | ||
}; | ||
|
||
r_device const rosstech_dcu706 = { | ||
.name = "Rosstech Digital Control Unit DCU-706/Sundance/Jacuzzi", | ||
.modulation = OOK_PULSE_PCM, | ||
.short_width = 200, | ||
.long_width = 200, | ||
.reset_limit = 2000, | ||
.decode_fn = &rosstech_dcu706_decode, | ||
.fields = output_fields, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters