Skip to content

Commit

Permalink
fix(QPG): Enable -Wundef and fix any errors for qpg based builds (pro…
Browse files Browse the repository at this point in the history
…ject-chip#29617)

* fix(QPG): Enable -Wundef and fix any errors for qpg based builds (Addresses project-chip#29591)

* Restyled by gn

---------

Co-authored-by: Restyled.io <commits@restyled.io>
  • Loading branch information
2 people authored and HunsupJung committed Oct 23, 2023
1 parent d758e14 commit c47abc0
Show file tree
Hide file tree
Showing 9 changed files with 39 additions and 19 deletions.
5 changes: 1 addition & 4 deletions examples/lighting-app/qpg/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@ qpg_sdk("sdk") {
"${qpg_project_dir}/include",
]

if (chip_enable_pw_rpc) {
defines = [ "PW_RPC_ENABLED" ]
}
defines = [ "PW_RPC_ENABLED=${chip_enable_pw_rpc}" ]
}

qpg_executable("lighting_app") {
Expand Down Expand Up @@ -92,7 +90,6 @@ qpg_executable("lighting_app") {

if (chip_enable_pw_rpc) {
defines += [
"PW_RPC_ENABLED",
"PW_RPC_ATTRIBUTE_SERVICE=1",
"PW_RPC_BUTTON_SERVICE=1",
"PW_RPC_DEVICE_SERVICE=1",
Expand Down
9 changes: 9 additions & 0 deletions examples/lighting-app/qpg/include/CHIPProjectConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,15 @@
#define CHIP_DEVICE_CONFIG_ENABLE_SED 0
#endif

/**
* @def CHIP_DEVICE_CONFIG_ENABLE_SSED
*
* @brief Defines if a matter device is acting as a Synchronized Sleepy End Device(SSED)
*/
#ifndef CHIP_DEVICE_CONFIG_ENABLE_SSED
#define CHIP_DEVICE_CONFIG_ENABLE_SSED 0
#endif

/**
* @def CHIP_DEVICE_CONFIG_THREAD_FTD
*
Expand Down
5 changes: 1 addition & 4 deletions examples/lock-app/qpg/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@ qpg_sdk("sdk") {
"${qpg_project_dir}/include",
]

if (chip_enable_pw_rpc) {
defines = [ "PW_RPC_ENABLED" ]
}
defines = [ "PW_RPC_ENABLED=${chip_enable_pw_rpc}" ]
}

qpg_executable("lock_app") {
Expand Down Expand Up @@ -89,7 +87,6 @@ qpg_executable("lock_app") {

if (chip_enable_pw_rpc) {
defines += [
"PW_RPC_ENABLED",
"PW_RPC_ATTRIBUTE_SERVICE=1",
"PW_RPC_BUTTON_SERVICE=1",
"PW_RPC_DEVICE_SERVICE=1",
Expand Down
14 changes: 14 additions & 0 deletions examples/lock-app/qpg/include/CHIPProjectConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,20 @@
#define CHIP_DEVICE_CONFIG_ENABLE_SED 1
#endif

/**
* @def CHIP_DEVICE_CONFIG_ENABLE_SSED
*
* @brief Defines if a matter device is acting as a Synchronized Sleepy End Device(SSED)
*/
#ifndef CHIP_DEVICE_CONFIG_ENABLE_SSED
#define CHIP_DEVICE_CONFIG_ENABLE_SSED 0
#endif

/**
* @def CHIP_DEVICE_CONFIG_THREAD_FTD
*
* @brief Defines if a matter device is acting as Full Thread Device (FTD)
*/
#ifndef CHIP_DEVICE_CONFIG_THREAD_FTD
#define CHIP_DEVICE_CONFIG_THREAD_FTD 0
#endif
10 changes: 5 additions & 5 deletions examples/platform/qpg/app/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@
#include <lib/support/logging/CHIPLogging.h>
#include <platform/CHIPDeviceLayer.h>

#if PW_RPC_ENABLED
#if defined(PW_RPC_ENABLED) && PW_RPC_ENABLED
#include "Rpc.h"
#endif // PW_RPC_ENABLED

#if ENABLE_CHIP_SHELL
#if defined(ENABLE_CHIP_SHELL) && ENABLE_CHIP_SHELL
#include "shell_common/shell.h"
#endif // ENABLE_CHIP_SHELL

Expand Down Expand Up @@ -142,7 +142,7 @@ CHIP_ERROR CHIP_Init(void)
{
CHIP_ERROR ret = CHIP_NO_ERROR;

#if PW_RPC_ENABLED
#if defined(PW_RPC_ENABLED) && PW_RPC_ENABLED
ret = (CHIP_ERROR) chip::rpc::Init();
if (ret != CHIP_NO_ERROR)
{
Expand All @@ -158,7 +158,7 @@ CHIP_ERROR CHIP_Init(void)
goto exit;
}

#if ENABLE_CHIP_SHELL
#if defined(ENABLE_CHIP_SHELL) && ENABLE_CHIP_SHELL
ret = (CHIP_ERROR) ShellTask::Start();
if (ret != CHIP_NO_ERROR)
{
Expand All @@ -184,7 +184,7 @@ CHIP_ERROR CHIP_Init(void)
goto exit;
}

#if CONFIG_CHIP_THREAD_SSED
#if defined(CHIP_DEVICE_CONFIG_ENABLE_SSED) && CHIP_DEVICE_CONFIG_ENABLE_SSED
ret = ConnectivityMgr().SetThreadDeviceType(ConnectivityManager::kThreadDeviceType_SynchronizedSleepyEndDevice);
qvIO_EnableSleep(true);
#elif CHIP_DEVICE_CONFIG_ENABLE_SED
Expand Down
4 changes: 4 additions & 0 deletions examples/platform/qpg/project_include/OpenThreadConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@
#define OPENTHREAD_CONFIG_DHCP6_CLIENT_ENABLE 0
#define OPENTHREAD_CONFIG_DHCP6_SERVER_ENABLE 0
#define OPENTHREAD_CONFIG_TCP_ENABLE 0
#define OPENTHREAD_CONFIG_TLS_ENABLE 0

#define OPENTHREAD_ENABLE_VENDOR_EXTENSION 0
#define OPENTHREAD_EXAMPLES_SIMULATION 0

// Use the Qorvo-supplied default platform configuration for remainder
// of OpenThread config options.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1710,7 +1710,7 @@ CHIP_ERROR GenericThreadStackManagerImpl_OpenThread<ImplClass>::DoInit(otInstanc
VerifyOrExit(otErr == OT_ERROR_NONE, err = MapOpenThreadError(otErr));

// Enable automatic assignment of Thread advertised addresses.
#if OPENTHREAD_CONFIG_IP6_SLAAC_ENABLE
#if defined(OPENTHREAD_CONFIG_IP6_SLAAC_ENABLE) && OPENTHREAD_CONFIG_IP6_SLAAC_ENABLE
otIp6SetSlaacEnabled(otInst, true);
#endif

Expand Down
4 changes: 0 additions & 4 deletions src/platform/qpg/Logging.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@
#include <openthread/platform/memory.h>
#endif // CHIP_DEVICE_CONFIG_ENABLE_THREAD

#ifdef PW_RPC_ENABLED
#include "PigweedLogger.h"
#endif

constexpr uint8_t kPrintfModuleLwip = 0x01;
constexpr uint8_t kPrintfModuleOpenThread = 0x02;
constexpr uint8_t kPrintfModuleLogging = 0x03;
Expand Down
5 changes: 4 additions & 1 deletion third_party/qpg_sdk/qpg_sdk.gni
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@ template("qpg_sdk") {
defines += [ "MBEDTLS_SW_ONLY" ]
}

cflags = []
#Wundef fix - to be updated in SDK
defines += [ "GP_SCHED_NR_OF_IDLE_CALLBACKS=0" ]

cflags = [ "-Wundef" ]

# Allow warning due to mbedtls
cflags += [
Expand Down

0 comments on commit c47abc0

Please sign in to comment.