Skip to content

Commit 074f7c9

Browse files
authored
Merge pull request #125 from LeeLeahy2/build-error
Fix compilation error when tokens.h is not available
2 parents a470519 + 23717cc commit 074f7c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Firmware/RTK_Surveyor/RTK_Surveyor.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ const char* pointPerfectKeyTopic = "/pp/ubx/0236/Lb";
364364
#if __has_include("tokens.h")
365365
#include "tokens.h"
366366
#else
367-
uint8_t pointPerfectTokenArray = {0xAA, 0xBB, 0xCC, 0xDD, 0x00, 0x11, 0x22, 0x33, 0x0A, 0x0B, 0x0C, 0x0D, 0x00, 0x01, 0x02, 0x03}; //Token in HEX form
367+
uint8_t pointPerfectTokenArray[] = {0xAA, 0xBB, 0xCC, 0xDD, 0x00, 0x11, 0x22, 0x33, 0x0A, 0x0B, 0x0C, 0x0D, 0x00, 0x01, 0x02, 0x03}; //Token in HEX form
368368

369369
static const char *AWS_PUBLIC_CERT = R"=====(
370370
-----BEGIN CERTIFICATE-----

0 commit comments

Comments
 (0)