Skip to content

Commit

Permalink
TSBM-21: removed debugging logs
Browse files Browse the repository at this point in the history
  • Loading branch information
NeethuVisw authored and n-nievergeld committed Feb 21, 2024
1 parent b341816 commit 1763286
Show file tree
Hide file tree
Showing 21 changed files with 9 additions and 986 deletions.
122 changes: 0 additions & 122 deletions examples/lock-app/renesas/README.md

This file was deleted.

2 changes: 0 additions & 2 deletions examples/lock-app/renesas/args.gni
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,3 @@ chip_project_config_include_dirs =
"//../../../../../../common/generic/",
"//../../../../../segger-rtt/rtt/"
]

print("=========renesas include paths: ${chip_project_config_include_dirs}")
4 changes: 2 additions & 2 deletions examples/lock-app/renesas/include/CHIPProjectConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
// -------------------- Device Identification Configuration --------------------

/* The VendorName attribute of the Basic cluster. */
#define CHIP_DEVICE_CONFIG_DEVICE_VENDOR_NAME "Infineon"
#define CHIP_DEVICE_CONFIG_DEVICE_VENDOR_NAME "renesas"

/* The VendorID attribute of the Basic cluster. */
#define CHIP_DEVICE_CONFIG_DEVICE_VENDOR_ID 0xFFF2

/* The ProductName attribute of the Basic cluster. */
#define CHIP_DEVICE_CONFIG_DEVICE_PRODUCT_NAME "CYW30739 Lock App"
#define CHIP_DEVICE_CONFIG_DEVICE_PRODUCT_NAME "renesas Lock App"

/* The ProductID attribute of the Basic cluster. */
#define CHIP_DEVICE_CONFIG_DEVICE_PRODUCT_ID 0x8002
Expand Down
56 changes: 0 additions & 56 deletions examples/lock-app/renesas/src/main.cpp

This file was deleted.

26 changes: 0 additions & 26 deletions src/platform/renesas/BLEManagerImpl.cpp

This file was deleted.

26 changes: 0 additions & 26 deletions src/platform/renesas/BLEManagerImpl.h

This file was deleted.

11 changes: 0 additions & 11 deletions src/platform/renesas/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ assert(chip_device_platform == "renesas")
static_library("renesas") {
sources = [
"../SingletonConfigurationManager.cpp",
#"BLEManagerImpl.cpp",
#"BLEManagerImpl.h",
#"BlePlatformConfig.h",
"CHIPDevicePlatformConfig.h",
"CHIPDevicePlatformEvent.h",
Expand All @@ -35,31 +33,22 @@ static_library("renesas") {
"ConnectivityManagerImpl.h",
"DiagnosticDataProviderImpl.cpp",
"DiagnosticDataProviderImpl.h",
# "FactoryDataProvider.cpp",
# "FactoryDataProvider.h",
"InetPlatformConfig.h",
"KeyValueStoreManagerImpl.cpp",
"KeyValueStoreManagerImpl.h",
#"Logging.cpp",
"DnssdImpl.cpp",
"PlatformManagerImpl.cpp",
"PlatformManagerImpl.h",
"SystemPlatformConfig.h",
"SystemTimeSupport.h",
"SystemTimeSupport.cpp",
"renesas-chip-mbedtls-config.h",
]

defines = [ "CHIP_SYSTEM_CONFIG_USE_LWIP=1", "FSL_RTOS_FREE_RTOS=1" ]


deps = [ "${chip_root}/src/crypto" ]

# public = [
# "${chip_root}/src/credentials/DeviceAttestationCredsProvider.h",
# "FactoryDataProvider.h",
#"OTAImageProcessorImpl.h",
# ]

public_deps = [ "${chip_root}/src/lib/dnssd:platform_header",
"${chip_root}/src/platform:platform_base" ]
Expand Down
2 changes: 1 addition & 1 deletion src/platform/renesas/BlePlatformConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* @file
* Platform-specific configuration overrides for the CHIP BLE
* Layer on MW320 platforms using the NXP SDK.
* Layer on renesas platforms.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion src/platform/renesas/ConnectivityManagerImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ inline ConnectivityManager & ConnectivityMgr(void)
* Returns the platform-specific implementation of the ConnectivityManager singleton object.
*
* Chip applications can use this to gain access to features of the ConnectivityManager
* that are specific to the ESP32 platform.
* that are specific to the renesas platform.
*/
inline ConnectivityManagerImpl & ConnectivityMgrImpl(void)
{
Expand Down
2 changes: 1 addition & 1 deletion src/platform/renesas/DiagnosticDataProviderImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* @file
* Provides an implementation of the DiagnosticDataProvider object
* for CYW30739 platform.
* for renesas platform.
*/

#include <platform/internal/CHIPDeviceLayerInternal.h>
Expand Down
15 changes: 0 additions & 15 deletions src/platform/renesas/DiagnosticDataProviderImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,6 @@ class DiagnosticDataProviderImpl : public DiagnosticDataProvider
CHIP_ERROR GetRebootCount(uint16_t & rebootCount) override;
CHIP_ERROR GetBootReason(BootReasonType & bootReason) override;


/// @Neethu Maybe we need to implement ethernet methods as well.
/**
* Ethernet network diagnostics methods
*/
// CHIP_ERROR GetEthPHYRate(app::Clusters::EthernetNetworkDiagnostics::PHYRateEnum & pHYRate);
// CHIP_ERROR GetEthFullDuplex(bool & fullDuplex);
// CHIP_ERROR GetEthCarrierDetect(bool & carrierDetect);
// CHIP_ERROR GetEthTimeSinceReset(uint64_t & timeSinceReset);
// CHIP_ERROR GetEthPacketRxCount(uint64_t & packetRxCount);
// CHIP_ERROR GetEthPacketTxCount(uint64_t & packetTxCount);
// CHIP_ERROR GetEthTxErrCount(uint64_t & txErrCount);
// CHIP_ERROR GetEthCollisionCount(uint64_t & collisionCount);
// CHIP_ERROR GetEthOverrunCount(uint64_t & overrunCount);
// CHIP_ERROR ResetEthNetworkDiagnosticsCounts();
};

/**
Expand Down
Loading

0 comments on commit 1763286

Please sign in to comment.