From 956c94d8ebe7a89961bd0637002c886cd2e91eab Mon Sep 17 00:00:00 2001 From: Noah Pendleton <2538614+noahp@users.noreply.github.com> Date: Mon, 30 Sep 2024 09:33:27 -0400 Subject: [PATCH] Enable tls credential shell Getting weird results on the ESP32-S3 though: ```plaintext uart:~$ cred list 1001,CA,ERROR,-134 1002,CA,ERROR,-134 1003,CA,ERROR,-134 ``` --- prj.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/prj.conf b/prj.conf index fc73c63..b9eed2d 100644 --- a/prj.conf +++ b/prj.conf @@ -65,6 +65,11 @@ CONFIG_MBEDTLS_MEMORY_DEBUG=y CONFIG_MBEDTLS_SHELL=y CONFIG_MBEDTLS_AES_ROM_TABLES=y +# Credential shell, useful for debug +CONFIG_TLS_CREDENTIALS_SHELL=y +# Required for TLS crediential shell +CONFIG_BASE64=y + # More verbose Memfault component logs CONFIG_MEMFAULT_LOG_LEVEL_DBG=y