Skip to content

Commit

Permalink
thingy53 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
davehorner committed Jul 5, 2024
1 parent 5cb8557 commit ca5f244
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 0 deletions.
1 change: 1 addition & 0 deletions samples/caf_sensor_manager/Kconfig.sysbuild
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ config REMOTE_BOARD
default "nrf5340dk/nrf5340/cpunet" if BOARD_NRF5340DK_NRF5340_CPUAPP
default "nrf5340dk/nrf5340/cpunet" if BOARD_NRF5340DK_NRF5340_CPUAPP_NS
default "nrf54h20dk/nrf54h20/cpuppr" if BOARD_NRF54H20DK_NRF54H20_CPUAPP
default "thingy53/nrf5340/cpunet" if BOARD_THINGY53_NRF5340_CPUAPP
18 changes: 18 additions & 0 deletions samples/caf_sensor_manager/boards/thingy53_nrf5340_cpuapp.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#
# Copyright (c) 2022 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
################################################################################

CONFIG_EVENT_MANAGER_PROXY=y
CONFIG_IPC_SERVICE=y
CONFIG_MBOX=y

CONFIG_OPENAMP=y
CONFIG_OPENAMP_SLAVE=n

CONFIG_CAF_SENSOR_DATA_AGGREGATOR_EVENTS=y

CONFIG_PARTITION_MANAGER_ENABLED=y
CONFIG_BOARD_ENABLE_CPUNET=y
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*
* Copyright (c) 2022 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/

/ {

reserved-memory {
sram0_aggregator_area0: memory@2007f000 {
reg = <0x2007f000 0x1000>;
};
};

sensor_stub: sensor_stub {
compatible = "nordic,sensor-stub";
generator = "sensor_stub_gen";
status = "okay";
};

agg0: agg0 {
compatible = "caf,aggregator";
sensor_descr = "accel_sim_xyz";
buf_data_length = <240>;
sample_size = <3>;
memory-region = <&sram0_aggregator_area0>;
status = "okay";
};
};

0 comments on commit ca5f244

Please sign in to comment.