Skip to content

Commit

Permalink
TSBM-21 Get building on new base of master (at time of forking)
Browse files Browse the repository at this point in the history
  • Loading branch information
n-nievergeld committed Feb 22, 2024
1 parent 7d4cd33 commit 57c7bf7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build_overrides/mbedtls.gni
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@

declare_args() {
# Root directory for mbedTLS.
mbedtls_root = "//third_party/connectedhomeip/third_party/mbedtls"
mbedtls_repo = "//third_party/connectedhomeip/third_party/mbedtls"
mbedtls_root = "//third_party/mbedtls"
mbedtls_repo = "//third_party/mbedtls"
}
3 changes: 1 addition & 2 deletions src/platform/device.gni
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,5 @@ assert(
chip_device_platform == "mw320" || chip_device_platform == "zephyr" ||
chip_device_platform == "beken" || chip_device_platform == "bl702" ||
chip_device_platform == "mt793x" || chip_device_platform == "SiWx917" ||
chip_device_platform == "openiotsdk" || chip_device_platform == "asr" ||
chip_device_platform == "renesas",
chip_device_platform == "openiotsdk" || chip_device_platform == "asr" || chip_device_platform == "renesas",
"Please select a valid value for chip_device_platform")
5 changes: 3 additions & 2 deletions src/platform/renesas/PlatformManagerImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#pragma once

#include <platform/PlatformManager.h>
#include <platform/internal/GenericPlatformManagerImpl_FreeRTOS.h>

#include <queue>

Expand All @@ -32,7 +33,7 @@ namespace DeviceLayer {
/**
* Concrete implementation of the PlatformManager singleton object for Linux platforms.
*/
class PlatformManagerImpl final : public PlatformManager
class PlatformManagerImpl final : public PlatformManager, public Internal::GenericPlatformManagerImpl_FreeRTOS<PlatformManagerImpl>
{
// Allow the PlatformManager interface class to delegate method calls to
// the implementation methods provided by this class.
Expand All @@ -52,7 +53,7 @@ class PlatformManagerImpl final : public PlatformManager
void _RemoveEventHandler(EventHandlerFunct handler, intptr_t arg = 0) {}
void _HandleServerStarted() {}
void _HandleServerShuttingDown() {}
void _ScheduleWork(AsyncWorkFunct workFunct, intptr_t arg = 0) {}
CHIP_ERROR _ScheduleWork(AsyncWorkFunct workFunct, intptr_t arg = 0) { return CHIP_ERROR_NOT_IMPLEMENTED; }

void _RunEventLoop()
{
Expand Down

0 comments on commit 57c7bf7

Please sign in to comment.