Merge remote-tracking branch 'ul/dev' into mntm-dev --nobuild

This commit is contained in:
WillyJL
2025-11-01 19:47:42 +01:00
39 changed files with 1281 additions and 683 deletions

View File

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

View File

@@ -398,6 +398,16 @@ void subghz_scene_set_type_fill_generation_infos(GenInfo* infos_dest, SetType ty
.keeloq.cnt = 0x05,
.keeloq.manuf = "IronLogic"};
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:
gen_info = (GenInfo){
.type = GenKeeloq,

View File

@@ -36,7 +36,7 @@ const char* const gps_text[GPS_COUNT] = {
"115200",
};
#define DEBUG_COUNTER_COUNT 16
#define DEBUG_COUNTER_COUNT 17
const char* const debug_counter_text[DEBUG_COUNTER_COUNT] = {
"+1",
"+2",
@@ -46,6 +46,7 @@ const char* const debug_counter_text[DEBUG_COUNTER_COUNT] = {
"+10",
"+50",
"OVFL",
"OFEX",
"No",
"-1",
"-2",
@@ -64,6 +65,7 @@ const int32_t debug_counter_val[DEBUG_COUNTER_COUNT] = {
10,
50,
65535,
65534,
0,
-1,
-2,

View File

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