Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
add comment to explain type for esp3d
  • Loading branch information
luc-github committed Dec 8, 2024
1 parent 33624be commit 337f80a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion esp3d/src/include/esp3d_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#define _VERSION_ESP3D_H

// version and sources location
#define FW_VERSION "3.0.0.a244"
#define FW_VERSION "3.0.0.a245"
#define REPOSITORY "https://github.com/luc-github/ESP3D/tree/3.0"

#endif //_VERSION_ESP3D_H
2 changes: 1 addition & 1 deletion esp3d/src/modules/http/handlers/handle-command.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ void HTTP_Server::handle_web_command() {
ESP3DClientType::http, esp3d_commands.getOutputClient(),
(uint8_t *)cmd.c_str(), cmd.length(), auth_level);
if (msg) {
msg->type = ESP3DMessageType::unique;
msg->type = ESP3DMessageType::unique; //ESP3D command is always unique
msg->request_id.code = 200;
// process command
esp3d_commands.process(msg);
Expand Down

0 comments on commit 337f80a

Please sign in to comment.