mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2026-03-29 08:39:53 +00:00
fix came twee repeats value
This commit is contained in:
@@ -3,9 +3,10 @@
|
||||
* SubGHz: Add **Nord ICE** protocol (33 bits, Static)
|
||||
* SubGHz: Add **CAME TOP44FGN** support in CAME TWEE protocol
|
||||
* SubGHz: Add all 0x0s and all 0xFs KeeLoq MF codes for normal and simple learning
|
||||
* SubGHz: Fix CAME TWEE repeats count for button click
|
||||
* NFC: Add Mifare Ultralight C Write Support (by @haw8411)
|
||||
* OFW PR 4362: NFC: Fix BusFault in Write to Initial Card (by @akrylysov)
|
||||
* Apps: Build tag (**22mar2026**) - **Check out more Apps updates and fixes by following** [this link](https://github.com/xMasterX/all-the-plugins/commits/dev)
|
||||
* Apps: Build tag (**27mar2026**) - **Check out more Apps updates and fixes by following** [this link](https://github.com/xMasterX/all-the-plugins/commits/dev)
|
||||
## Other changes
|
||||
* Display: Extend lcd contrast range to full ST756x 6-bit range (by @ShaTie) (reduced to -10 to +18 to avoid fully unreadable state)
|
||||
<br><br>
|
||||
|
||||
@@ -109,7 +109,7 @@ void* subghz_protocol_encoder_came_twee_alloc(SubGhzEnvironment* environment) {
|
||||
instance->base.protocol = &subghz_protocol_came_twee;
|
||||
instance->generic.protocol_name = instance->base.protocol->name;
|
||||
|
||||
instance->encoder.repeat = 3;
|
||||
instance->encoder.repeat = 1;
|
||||
instance->encoder.size_upload = 1536; // 1308
|
||||
instance->encoder.upload = malloc(instance->encoder.size_upload * sizeof(LevelDuration));
|
||||
instance->encoder.is_running = false;
|
||||
|
||||
Reference in New Issue
Block a user