-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SL-ONLY] Silabs tracing cherry pick (#118)
- Loading branch information
1 parent
d0e8630
commit e66991b
Showing
7 changed files
with
1,515 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/* See Project CHIP LICENSE file for licensing information. */ | ||
#pragma once | ||
|
||
bool isLogInitialized(void); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#/*************************************************************************** | ||
# * @file BUILD.gn | ||
# * @brief Instrumenting for matter operation tracing for the Silicon Labs platform. | ||
# ******************************************************************************* | ||
# * # License | ||
# * <b>Copyright 2024 Silicon Laboratories Inc. www.silabs.com</b> | ||
# ******************************************************************************* | ||
# * | ||
# * The licensor of this software is Silicon Laboratories Inc. Your use of this | ||
# * software is governed by the terms of Silicon Labs Master Software License | ||
# * Agreement (MSLA) available at | ||
# * www.silabs.com/about-us/legal/master-software-license-agreement. This | ||
# * software is distributed to you in Source Code format and is governed by the | ||
# * sections of the MSLA applicable to Source Code. | ||
# * | ||
# ******************************************************************************/ | ||
|
||
import("//build_overrides/build.gni") | ||
import("//build_overrides/chip.gni") | ||
|
||
static_library("SilabsTracing") { | ||
sources = [ | ||
"SilabsTracing.cpp", | ||
"SilabsTracing.h", | ||
] | ||
|
||
deps = [ | ||
"${chip_root}/src/lib/core", | ||
"${chip_root}/src/lib/support", | ||
"${chip_root}/src/platform", | ||
"${chip_root}/src/system", | ||
] | ||
} |
Oops, something went wrong.