mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 12:42:30 +04:00
Fix stilmatic support?
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
* If you have copied any apps manually into `apps` folder - remove `apps` folder or that specific apps you copied on your microSD before installing this release to avoid issues due to OFW API version update! If you using regular builds or extra pack builds (e) without your manually added apps, all included apps will be installed automatically, no extra actions needed!
|
* If you have copied any apps manually into `apps` folder - remove `apps` folder or that specific apps you copied on your microSD before installing this release to avoid issues due to OFW API version update! If you using regular builds or extra pack builds (e) without your manually added apps, all included apps will be installed automatically, no extra actions needed!
|
||||||
-----
|
-----
|
||||||
* SubGHz Remote: Fixed BinRAW support, + many other fixes (by @gid9798 | PR #492)
|
* SubGHz Remote: Fixed BinRAW support, + many other fixes (by @gid9798 | PR #492)
|
||||||
|
* SubGHz: Fix KL: Stilmatic support + add manually support
|
||||||
* SubGHz: Keeloq mfname refactoring (by @gid9798 | PR #479)
|
* SubGHz: Keeloq mfname refactoring (by @gid9798 | PR #479)
|
||||||
* Desktop Clock: Some improvements and fixes (by @gid9798 | PR #490)
|
* Desktop Clock: Some improvements and fixes (by @gid9798 | PR #490)
|
||||||
* LF RFID: Cleanup duplicated code (by @gid9798 | PR #493)
|
* LF RFID: Cleanup duplicated code (by @gid9798 | PR #493)
|
||||||
@@ -17,6 +18,7 @@
|
|||||||
* Plugins: Update -> TOTP (Authenticator) [(by akopachov)](https://github.com/akopachov/flipper-zero_authenticator)
|
* Plugins: Update -> TOTP (Authenticator) [(by akopachov)](https://github.com/akopachov/flipper-zero_authenticator)
|
||||||
* Plugins: Update -> ESP32: WiFi Marauder companion plugin [(by 0xchocolate)](https://github.com/0xchocolate/flipperzero-wifi-marauder)
|
* Plugins: Update -> ESP32: WiFi Marauder companion plugin [(by 0xchocolate)](https://github.com/0xchocolate/flipperzero-wifi-marauder)
|
||||||
* Plugins: Update -> UART Terminal [(by cool4uma)](https://github.com/cool4uma/UART_Terminal/tree/main)
|
* Plugins: Update -> UART Terminal [(by cool4uma)](https://github.com/cool4uma/UART_Terminal/tree/main)
|
||||||
|
* OFW: FuriHal: disable bus re-initialization on early init and extra asserts for AHB1,AHB2,AHB3 which must be left intact on entering to FUS -> **Fixes updater error 1-100**
|
||||||
* OFW: NFC: fix MFC timings -> **Fixes issues with Mifare Classic emulation that could happen after unlshd-049 release**
|
* OFW: NFC: fix MFC timings -> **Fixes issues with Mifare Classic emulation that could happen after unlshd-049 release**
|
||||||
* OFW: Update dolphin.py
|
* OFW: Update dolphin.py
|
||||||
* OFW: NFC Magic: Fix gen1 writing with invalid BCC (lost fix from PR 2511)
|
* OFW: NFC Magic: Fix gen1 writing with invalid BCC (lost fix from PR 2511)
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ typedef enum {
|
|||||||
SubmenuIndexElmesElectronic,
|
SubmenuIndexElmesElectronic,
|
||||||
SubmenuIndexSommer_FM_434,
|
SubmenuIndexSommer_FM_434,
|
||||||
SubmenuIndexSommer_FM_868,
|
SubmenuIndexSommer_FM_868,
|
||||||
|
SubmenuIndexStilmatic,
|
||||||
SubmenuIndexDTMNeo433,
|
SubmenuIndexDTMNeo433,
|
||||||
SubmenuIndexGibidi433,
|
SubmenuIndexGibidi433,
|
||||||
SubmenuIndexGSN,
|
SubmenuIndexGSN,
|
||||||
|
|||||||
@@ -103,6 +103,12 @@ void subghz_scene_set_type_on_enter(void* context) {
|
|||||||
SubmenuIndexSommer_FM_868,
|
SubmenuIndexSommer_FM_868,
|
||||||
subghz_scene_set_type_submenu_callback,
|
subghz_scene_set_type_submenu_callback,
|
||||||
subghz);
|
subghz);
|
||||||
|
submenu_add_item(
|
||||||
|
subghz->submenu,
|
||||||
|
"KL: Stilmatic 433MHz",
|
||||||
|
SubmenuIndexStilmatic,
|
||||||
|
subghz_scene_set_type_submenu_callback,
|
||||||
|
subghz);
|
||||||
submenu_add_item(
|
submenu_add_item(
|
||||||
subghz->submenu,
|
subghz->submenu,
|
||||||
"KL: IronLogic 433MHz",
|
"KL: IronLogic 433MHz",
|
||||||
@@ -510,6 +516,15 @@ bool subghz_scene_set_type_on_event(void* context, SceneManagerEvent event) {
|
|||||||
scene_manager_next_scene(subghz->scene_manager, SubGhzSceneShowError);
|
scene_manager_next_scene(subghz->scene_manager, SubGhzSceneShowError);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case SubmenuIndexStilmatic:
|
||||||
|
generated_protocol = subghz_txrx_gen_keeloq_protocol(
|
||||||
|
subghz->txrx, "AM650", 433920000, key & 0x0FFFFFFF, 0x1, 0x0003, "Stilmatic");
|
||||||
|
if(!generated_protocol) {
|
||||||
|
furi_string_set(
|
||||||
|
subghz->error_str, "Function requires\nan SD card with\nfresh databases.");
|
||||||
|
scene_manager_next_scene(subghz->scene_manager, SubGhzSceneShowError);
|
||||||
|
}
|
||||||
|
break;
|
||||||
case SubmenuIndexSommer_FM_434:
|
case SubmenuIndexSommer_FM_434:
|
||||||
generated_protocol = subghz_txrx_gen_keeloq_protocol(
|
generated_protocol = subghz_txrx_gen_keeloq_protocol(
|
||||||
subghz->txrx, "FM476", 434420000, key & 0x0FFFFFFF, 0x4, 0x0003, "Sommer(fsk476)");
|
subghz->txrx, "FM476", 434420000, key & 0x0FFFFFFF, 0x4, 0x0003, "Sommer(fsk476)");
|
||||||
|
|||||||
@@ -215,10 +215,9 @@ static bool subghz_protocol_keeloq_gen_data(
|
|||||||
(strcmp(instance->manufacture_name, "DTM_Neo") == 0) ||
|
(strcmp(instance->manufacture_name, "DTM_Neo") == 0) ||
|
||||||
(strcmp(instance->manufacture_name, "FAAC_RC,XT") == 0) ||
|
(strcmp(instance->manufacture_name, "FAAC_RC,XT") == 0) ||
|
||||||
(strcmp(instance->manufacture_name, "Mutanco_Mutancode") == 0) ||
|
(strcmp(instance->manufacture_name, "Mutanco_Mutancode") == 0) ||
|
||||||
(strcmp(instance->manufacture_name, "Stilmatic") == 0) ||
|
|
||||||
(strcmp(instance->manufacture_name, "Came_Space") == 0)) {
|
(strcmp(instance->manufacture_name, "Came_Space") == 0)) {
|
||||||
// DTM Neo, Came_Space uses 12bit serial -> simple learning
|
// DTM Neo, Came_Space uses 12bit serial -> simple learning
|
||||||
// FAAC_RC,XT , Mutanco_Mutancode, Stilmatic(Schellenberg) 12bit serial -> normal learning
|
// FAAC_RC,XT , Mutanco_Mutancode 12bit serial -> normal learning
|
||||||
decrypt = btn << 28 | (instance->generic.serial & 0xFFF) << 16 |
|
decrypt = btn << 28 | (instance->generic.serial & 0xFFF) << 16 |
|
||||||
instance->generic.cnt;
|
instance->generic.cnt;
|
||||||
} else if(
|
} else if(
|
||||||
|
|||||||
Reference in New Issue
Block a user