1# Copyright (c) 2023 Benjamin Cabé <benjamin@zephyrproject.org> 2# SPDX-License-Identifier: Apache-2.0 3 4config SAMPLE_CHART_POINTS_PER_SERIES 5 int "Number of points per series" 6 default 50 7 range 10 200 8 help 9 Maximum number of points per series in the accelerometer chart. 10 Warning: More points means more memory usage, and slower rendering! 11 12config SAMPLE_ACCEL_SAMPLING_RATE 13 int "Accelerometer sampling rate (Hz)" 14 default 50 15 range 1 100 16 17source "Kconfig.zephyr" 18