Fixed array as initializer (illegal pre-C++11)

This commit is contained in:
jgromes 2020-07-06 12:36:19 +02:00
parent 2a2efb5413
commit c9add26cfe

View file

@ -149,7 +149,7 @@ class Module {
/*!
\brief Line feed to be used when sending AT commands. Defaults to CR+LF.
*/
char AtLineFeed[3] = "\r\n";
char AtLineFeed[3] = {'\r', '\n'};
/*!
\brief Basic SPI read command. Defaults to 0x00.