Skip to content

Commit

Permalink
Standard deviation - BLTouch repeatability test (bigtreetech#1484)
Browse files Browse the repository at this point in the history
  • Loading branch information
kisslorand committed Jan 12, 2021
1 parent 864e2ec commit 915f0a9
Show file tree
Hide file tree
Showing 19 changed files with 178 additions and 142 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Copy to SD Card root directory to update/MKSTFT28.bin
Binary file not shown.
Binary file modified Copy to SD Card root directory to update/MKS_32_V1_4.26.x.bin
Binary file not shown.
312 changes: 170 additions & 142 deletions TFT/src/User/API/parseACK.c

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions TFT/src/User/API/parseACK.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ extern "C" {

#include <stdint.h>
#include "Configuration.h"
#include "includes.h"

static const char errormagic[] = "Error:";
static const char echomagic[] = "echo:";


#define ACK_MAX_SIZE 512

typedef enum // popup message types available to display an echo message
Expand Down
5 changes: 5 additions & 0 deletions TFT/src/User/Menu/Popup.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@ void _setDialogMsgStr(uint8_t * str)
popup_strcpy(popup_msg, str, sizeof(popup_msg));
}

uint8_t *getDialogMsgStr()
{
return (uint8_t *)popup_msg;
}

void _setDialogOkTextStr(uint8_t * str)
{
popup_strcpy(popup_ok, str, sizeof(popup_ok));
Expand Down
1 change: 1 addition & 0 deletions TFT/src/User/Menu/Popup.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ extern BUTTON bottomDoubleBtn[];

void _setDialogTitleStr(uint8_t * str);
void _setDialogMsgStr(uint8_t * str);
uint8_t *getDialogMsgStr(void);
void _setDialogOkTextStr(uint8_t * str);
void _setDialogCancelTextStr(uint8_t * str);

Expand Down

0 comments on commit 915f0a9

Please sign in to comment.