File tree 1 file changed +2
-1
lines changed
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ class RvcRunModeDelegate : public ModeBase::Delegate
42
42
using ModeTagStructType = detail::Structs::ModeTagStruct::Type;
43
43
ModeTagStructType ModeTagsIdle[1 ] = { { .value = to_underlying (ModeTag::kIdle ) } };
44
44
ModeTagStructType ModeTagsCleaning[1 ] = { { .value = to_underlying (ModeTag::kCleaning ) } };
45
+ ModeTagStructType ModeTagsMapping[1 ] = { { .value = to_underlying (ModeTag::kMapping ) } };
45
46
46
47
const detail::Structs::ModeOptionStruct::Type kModeOptions [3 ] = {
47
48
detail::Structs::ModeOptionStruct::Type{ .label = CharSpan::fromCharString (" Idle" ),
@@ -52,7 +53,7 @@ class RvcRunModeDelegate : public ModeBase::Delegate
52
53
.modeTags = DataModel::List<const ModeTagStructType>(ModeTagsCleaning) },
53
54
detail::Structs::ModeOptionStruct::Type{ .label = CharSpan::fromCharString (" Mapping" ),
54
55
.mode = ModeMapping,
55
- .modeTags = DataModel::List<const ModeTagStructType>(ModeTagsIdle ) },
56
+ .modeTags = DataModel::List<const ModeTagStructType>(ModeTagsMapping ) },
56
57
};
57
58
58
59
CHIP_ERROR Init () override ;
You can’t perform that action at this time.
0 commit comments