From 91d86cd76df721ce70474d977d91af3d127dcbbb Mon Sep 17 00:00:00 2001 From: Gerard Marull-Paretas Date: Wed, 3 May 2023 17:28:31 +0200 Subject: [PATCH] app: remove rtt config RTT is something proprietary, not all boards/programmers have. Let's make the application simpler. Signed-off-by: Gerard Marull-Paretas --- README.md | 3 +-- app/rtt.conf | 9 --------- 2 files changed, 1 insertion(+), 11 deletions(-) delete mode 100644 app/rtt.conf diff --git a/README.md b/README.md index 90a3e4d..428d348 100644 --- a/README.md +++ b/README.md @@ -73,8 +73,7 @@ command: west build -b $BOARD app -- -DOVERLAY_CONFIG=debug.conf ``` -You can also use it together with the `rtt.conf` file if using Segger RTT. Once -you have built the application, run the following command to flash it: +Once you have built the application, run the following command to flash it: ```shell west flash diff --git a/app/rtt.conf b/app/rtt.conf deleted file mode 100644 index 9ccea96..0000000 --- a/app/rtt.conf +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2021 Nordic Semiconductor ASA -# SPDX-License-Identifier: Apache-2.0 -# -# This is a Kconfig fragment which can be used to enable Segger RTT options. -# It should be used in conjunction with debug.conf. - -# segger RTT console -CONFIG_USE_SEGGER_RTT=y -CONFIG_RTT_CONSOLE=y