Skip to content

Commit 5a27e17

Browse files
Bugfix: NMEA buffer size enlarged.
1 parent ec27bd2 commit 5a27e17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Output_Formatter/NMEA_format.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
class string_buffer_t
1414
{
1515
public:
16-
enum{ BUFLEN = 500};
16+
enum{ BUFLEN = 1024-sizeof(uint32_t)};
1717
char string[BUFLEN];
1818
uint32_t length;
1919
};

0 commit comments

Comments
 (0)