Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
401ff2f
[Telink] Use Non-Concurrent commsioning for B9X & TLX SoCs
s07641069 Feb 17, 2026
ccb1208
[Telink] remove HandleThreadStateChange
s07641069 Feb 17, 2026
808f7fe
[Telink] fix issue
s07641069 Feb 17, 2026
38d8d98
Restyled by clang-format
restyled-commits Feb 17, 2026
b5b8b0d
[Telink] Fix stale DTS on rebuild
s07641069 Feb 20, 2026
3355871
Merge branch 'telink_stale_dts_fix' into telink_non-concurrect
s07641069 Feb 20, 2026
fe86c57
[Telink] Remove CommitConfiguration
s07641069 Feb 23, 2026
f37b159
Merge branch 'master' into telink_non-concurrect
s07641069 Feb 23, 2026
3411899
[Telink] Rework ResetFailSafeTimer reset for unexpected BLE disconnec…
s07641069 Feb 24, 2026
e20bb3a
[Telink] Fix error
s07641069 Feb 24, 2026
c503ee3
[Telink] Move otInstanceFinalize directly to AppTask
s07641069 Feb 25, 2026
600bcf9
Merge branch 'master' into telink_non-concurrect
s07641069 Feb 26, 2026
0d1aa42
[Telink] Check return from InitCommonParts
s07641069 Mar 2, 2026
762a328
[Telink] Fix temperature-measurement app build
s07641069 Mar 2, 2026
7ca6e2b
[Telink] Move Thread networks prescaning into main init
s07641069 Mar 2, 2026
e1c2b6f
[Telink] Switch to common Zephyr ThreadStackManagerImpl
s07641069 Mar 3, 2026
ddf965a
Merge branch 'master' into telink_non-concurrect
s07641069 Mar 3, 2026
47dbc80
[Telink] Fix Zephyr v3.3 builds
s07641069 Mar 3, 2026
ddd82bf
[Telink] Remove dependencies between Telink & Zephyr BLEManagerImpl
s07641069 Mar 6, 2026
2cd2fbe
Merge branch 'master' into telink_non-concurrect
s07641069 Mar 6, 2026
07fd026
[Telink] Switch to common Zephyr BLEManagerImpl
s07641069 Mar 6, 2026
26e3a95
Restyled by clang-format
restyled-commits Mar 6, 2026
ba27aeb
Merge branch 'master' into telink_non-concurrect
s07641069 Mar 10, 2026
a68317f
[Telink] update stack values
s07641069 Mar 10, 2026
f2ed89c
[Telink] update stack values
s07641069 Mar 11, 2026
7939045
[Telink] add error prints
s07641069 Mar 11, 2026
1a5b8b0
Restyled by clang-format
restyled-commits Mar 11, 2026
94cdd05
Update src/platform/Zephyr/ThreadStackManagerImpl.cpp
s07641069 Mar 11, 2026
3711c85
Merge branch 'master' into telink_non-concurrect
s07641069 Mar 11, 2026
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
[Telink] Fix temperature-measurement app build
  • Loading branch information
s07641069 committed Mar 2, 2026
commit 762a3289398a70418ce8857fe7f78648dab74055
3 changes: 3 additions & 0 deletions examples/temperature-measurement-app/telink/src/AppTask.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@

LOG_MODULE_DECLARE(app, CONFIG_CHIP_APP_LOG_LEVEL);

using namespace chip;
using namespace ::chip::app::Clusters;

namespace {
k_timer sTemperatureMeasurementUpdateTimer;
constexpr uint16_t kTemperatureMeasurementUpdateTimerPeriodMs = 5000; // 5s timer period
Expand Down
Loading