Skip to content

Commit

Permalink
hollarm button codes and gangqi validator allow more serials [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
xMasterX committed Sep 16, 2024
1 parent 521de2b commit 2af87cd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions lib/subghz/protocols/gangqi.c
Original file line number Diff line number Diff line change
Expand Up @@ -496,8 +496,8 @@ void subghz_protocol_decoder_gangqi_get_string(void* context, FuriString* output
bool serial_is_valid =
(((!(sum_3bytes_serial & 0x3)) &&
((0xB < sum_3bytes_serial) && (sum_3bytes_serial < 0x141))) &&
((((instance->generic.serial >> 16) & 0xFF) == 0x2) ||
(((instance->generic.serial >> 16) & 0xFF) == 0x3)));
((((instance->generic.serial >> 16) & 0xFF) >= 0x0) ||
(((instance->generic.serial >> 16) & 0xFF) <= 0x3)));

furi_string_cat_printf(
output,
Expand Down
12 changes: 6 additions & 6 deletions lib/subghz/protocols/hollarm.c
Original file line number Diff line number Diff line change
Expand Up @@ -402,16 +402,16 @@ static const char* subghz_protocol_hollarm_get_button_name(uint8_t btn) {
"Disarm", // B (2)
"Arm", // A (1)
"0x3",
"Alarm", // C (3)
"Ringtone/Alarm", // C (3)
"0x5",
"0x6",
"0x7",
"Ring", // D (4)
"0x9",
"0xA",
"0xB",
"0xC",
"0xD",
"Settings mode",
"Exit settings",
"Vibro sens. setting",
"Not used\n(in settings)",
"Volume setting",
"0xE",
"0xF"};
return btn <= 0xf ? name_btn[btn] : name_btn[0];
Expand Down

0 comments on commit 2af87cd

Please sign in to comment.