Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Linux sample implementation for Messages cluster #32043

Merged
merged 25 commits into from
Feb 16, 2024
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
e33eff5
Linux sample implementation for Messages cluster
chrisdecenzo Feb 9, 2024
326644f
cleanup the chip:: and chip::app prefixes
chrisdecenzo Feb 9, 2024
0dabc8c
Merge branch 'master' into tv2-6
lazarkov Feb 9, 2024
caea32b
CI fixes
chrisdecenzo Feb 9, 2024
0e94261
Merge branch 'tv2-6' of github.com:project-chip/connectedhomeip into …
chrisdecenzo Feb 9, 2024
222019f
Merge branch 'master' into tv2-6
lazarkov Feb 12, 2024
18fe638
Address comments
chrisdecenzo Feb 13, 2024
e716867
Merge branch 'tv2-6' of github.com:project-chip/connectedhomeip into …
chrisdecenzo Feb 13, 2024
784b9a2
Make memory management less error prone
chrisdecenzo Feb 14, 2024
3681d6d
Fix CI
chrisdecenzo Feb 14, 2024
66a31cb
more feedback
chrisdecenzo Feb 14, 2024
47809aa
fix CI
chrisdecenzo Feb 14, 2024
6183338
Restyled by clang-format (#32123)
restyled-io[bot] Feb 14, 2024
d976b01
address comments
chrisdecenzo Feb 15, 2024
4b08069
address comments
chrisdecenzo Feb 15, 2024
4e3b2d8
Restyled by clang-format (#32136)
restyled-io[bot] Feb 15, 2024
d759a6f
fix CI
chrisdecenzo Feb 15, 2024
9fb2f0b
address comments
chrisdecenzo Feb 15, 2024
760d0c5
address comments
chrisdecenzo Feb 15, 2024
8e8bcff
Restyled by clang-format (#32144)
restyled-io[bot] Feb 15, 2024
0c2fa27
address comments
chrisdecenzo Feb 15, 2024
01ebed8
address comments
chrisdecenzo Feb 15, 2024
ccac074
address comments
chrisdecenzo Feb 15, 2024
98b39ee
Restyled by clang-format (#32148)
restyled-io[bot] Feb 15, 2024
9c71610
Merge branch 'master' into tv2-6
lazarkov Feb 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Restyled by clang-format (#32144)
Co-authored-by: Restyled.io <commits@restyled.io>
restyled-io[bot] and restyled-commits authored Feb 15, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 8e8bcff33f7637d31ebf90f36c797e0c2f6f9c6c
4 changes: 2 additions & 2 deletions examples/tv-app/tv-common/clusters/messages/MessagesManager.h
Original file line number Diff line number Diff line change
@@ -30,8 +30,8 @@ struct CachedMessageOption
{}

CachedMessageOption(const CachedMessageOption & option) :
mLabel(option.mLabel), mOption{ option.mOption.messageResponseID,
chip::MakeOptional(chip::CharSpan::fromCharString(mLabel.c_str())) }
mLabel(option.mLabel),
mOption{ option.mOption.messageResponseID, chip::MakeOptional(chip::CharSpan::fromCharString(mLabel.c_str())) }
{}

// CachedMessageOption & operator=(const CachedMessageOption & option) { return *this; };