Fixed array as initializer (illegal pre-C++11)
This commit is contained in:
parent
2a2efb5413
commit
c9add26cfe
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue