1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 12:42:30 +04:00

subghz il100 smart add manually support

This commit is contained in:
MX
2025-10-21 01:44:30 +03:00
parent a1c8dfb61b
commit 01c168e351
3 changed files with 12 additions and 0 deletions

View File

@@ -91,6 +91,7 @@ typedef enum {
SetTypeSommer_FM238_868, SetTypeSommer_FM238_868,
SetTypeStilmatic, SetTypeStilmatic,
SetTypeIronLogic, SetTypeIronLogic,
SetTypeIronLogicSmart,
SetTypeDeaMio433, SetTypeDeaMio433,
SetTypeDTMNeo433, SetTypeDTMNeo433,
SetTypeGibidi433, SetTypeGibidi433,

View File

@@ -398,6 +398,16 @@ void subghz_scene_set_type_fill_generation_infos(GenInfo* infos_dest, SetType ty
.keeloq.cnt = 0x05, .keeloq.cnt = 0x05,
.keeloq.manuf = "IronLogic"}; .keeloq.manuf = "IronLogic"};
break; break;
case SetTypeIronLogicSmart:
gen_info = (GenInfo){
.type = GenKeeloq,
.mod = "AM650",
.freq = 433920000,
.keeloq.serial = key & 0x00FFFFF0,
.keeloq.btn = 0x04,
.keeloq.cnt = 0x05,
.keeloq.manuf = "IL-100(Smart)"};
break;
case SetTypeStilmatic: case SetTypeStilmatic:
gen_info = (GenInfo){ gen_info = (GenInfo){
.type = GenKeeloq, .type = GenKeeloq,

View File

@@ -39,6 +39,7 @@ static const char* submenu_names[SetTypeMAX] = {
[SetTypeSommer_FM238_868] = "KL: Sommer fm2 868Mhz", [SetTypeSommer_FM238_868] = "KL: Sommer fm2 868Mhz",
[SetTypeStilmatic] = "KL: Stilmatic 433MHz", [SetTypeStilmatic] = "KL: Stilmatic 433MHz",
[SetTypeIronLogic] = "KL: IronLogic 433MHz", [SetTypeIronLogic] = "KL: IronLogic 433MHz",
[SetTypeIronLogicSmart] = "KL: IronLogic SM 433MHz",
[SetTypeDeaMio433] = "KL: DEA Mio 433MHz", [SetTypeDeaMio433] = "KL: DEA Mio 433MHz",
[SetTypeDTMNeo433] = "KL: DTM Neo 433MHz", [SetTypeDTMNeo433] = "KL: DTM Neo 433MHz",
[SetTypeGibidi433] = "KL: Gibidi 433MHz", [SetTypeGibidi433] = "KL: Gibidi 433MHz",