kopia lustrzana https://github.com/jgromes/RadioLib
Fixed array as initializer (illegal pre-C++11)
rodzic
2a2efb5413
commit
c9add26cfe
|
@ -149,7 +149,7 @@ class Module {
|
||||||
/*!
|
/*!
|
||||||
\brief Line feed to be used when sending AT commands. Defaults to CR+LF.
|
\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.
|
\brief Basic SPI read command. Defaults to 0x00.
|
||||||
|
|
Ładowanie…
Reference in New Issue