Skip to content

Commit 8593136

Browse files
committed
Fix random crash at compilation
1 parent a885afc commit 8593136

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

esp3d/src/include/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#define _VERSION_ESP3D_H
2323

2424
//version and sources location
25-
#define FW_VERSION "3.0.0.a211"
25+
#define FW_VERSION "3.0.0.a212"
2626
#define REPOSITORY "https://github.com/luc-github/ESP3D/tree/3.0"
2727

2828
#endif //_VERSION_ESP3D_H

esp3d/src/modules/websocket/websocket_server.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#include "../authentication/authentication_service.h"
3333
WebSocket_Server websocket_terminal_server("webui-v3");
3434
#if defined(WS_DATA_FEATURE)
35-
WebSocket_Server websocket_data_server();
35+
WebSocket_Server websocket_data_server("arduino");
3636
#endif //WS_DATA_FEATURE
3737
void WebSocket_Server::pushMSG (const char * data)
3838
{

0 commit comments

Comments
 (0)