From 12b4fc9e02c7fd9cd815f6a99177b6a471ceec99 Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 5 Jul 2020 10:00:38 +0200 Subject: [PATCH] Changed line feed data type --- src/Module.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Module.h b/src/Module.h index 71b372eb..84b398c4 100644 --- a/src/Module.h +++ b/src/Module.h @@ -136,7 +136,7 @@ class Module { /*! \brief Line feed to be used when sending AT commands. Defaults to CR+LF. */ - const char* AtLineFeed = "\r\n"; + char AtLineFeed[3] = "\r\n"; /*! \brief Basic SPI read command. Defaults to 0x00.