From 64d6df256d5d940f994f288b18c1ce2f704f4927 Mon Sep 17 00:00:00 2001 From: BlackMark Date: Mon, 13 Apr 2020 00:54:44 +0200 Subject: [PATCH] Fix string being located in RAM --- fantemp/terminal.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fantemp/terminal.hpp b/fantemp/terminal.hpp index f9ef939..522180a 100644 --- a/fantemp/terminal.hpp +++ b/fantemp/terminal.hpp @@ -295,7 +295,7 @@ class Terminal { m_serial << detail::ENDL; } } else { - m_serial << "There is no data yet!" << detail::ENDL; + m_serial << F("There is no data yet!") << detail::ENDL; } }