Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken nightly QA test #189

Merged
merged 4 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
wsptdis_accel: wsptdis-accel {
compatible = "zephyr,sensing-phy-3d-sensor";
status = "disabled";
sensor-type = <SENSING_SENSOR_TYPE_MOTION_ACCELEROMETER_3D>;
sensor-types = <SENSING_SENSOR_TYPE_MOTION_ACCELEROMETER_3D
SENSING_SENSOR_TYPE_MOTION_GYROMETER_3D
SENSING_SENSOR_TYPE_MOTION_MOTION_DETECTOR>;
friendly-name = "WSP 10-DOF IMU Shield Accelerometer";
minimal-interval = <625>;
underlying-device = <&wsptdis_sens_dof>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
wspes_accel: wspes-accel {
compatible = "zephyr,sensing-phy-3d-sensor";
status = "disabled";
sensor-type = <SENSING_SENSOR_TYPE_MOTION_ACCELEROMETER_3D>;
sensor-types = <SENSING_SENSOR_TYPE_MOTION_ACCELEROMETER_3D
SENSING_SENSOR_TYPE_MOTION_GYROMETER_3D
SENSING_SENSOR_TYPE_MOTION_MOTION_DETECTOR>;
friendly-name = "WSP Environment Shield Accelerometer";
minimal-interval = <625>;
underlying-device = <&wspes_sens_dof>;
Expand Down
1 change: 1 addition & 0 deletions doc/bridle/releases/release-notes-3.6.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ Issue Related Items

These GitHub issues were addressed since project bootstrapping:

* :github:`187` - [BUG] ubx_gnss sample fails to build
* :github:`185` - [HW] Waveshare Pico 10-DOF IMU Sensor
* :github:`183` - [HW] Waveshare Pico RGB LED
* :github:`177` - [HW] Waveshare Pico Environment Sensor
Expand Down
3 changes: 2 additions & 1 deletion samples/helloshell/boards/qemu_cortex_m0.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Copyright (c) 2021-2023 TiaC Systems
# Copyright (c) 2021-2024 TiaC Systems
# SPDX-License-Identifier: Apache-2.0

# disable components to avoid RAM overflow on BSS allocation
CONFIG_FLASH=n
CONFIG_FLASH_SHELL=n
CONFIG_SENSOR_INFO=n
CONFIG_SHELL_MINIMAL=y
Loading