Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Standard deviation - BLTouch repeatability test #1484

Merged
merged 27 commits into from
Jan 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
c274e56
Merge pull request #4 from bigtreetech/master
kisslorand Nov 28, 2020
027126d
Deafult MKS_32_V1_4
kisslorand Nov 28, 2020
52fa0cf
Merge branch 'master' of https://github.com/bigtreetech/BIGTREETECH-T…
kisslorand Nov 30, 2020
81de5ef
PlatformIO.ini defaulted back to BIGTREE_TFT35_V3_0
kisslorand Dec 2, 2020
339d888
Merge pull request #7 from bigtreetech/master
kisslorand Dec 4, 2020
487fe10
Merge pull request #11 from bigtreetech/master
kisslorand Dec 15, 2020
af86e84
Merge pull request #12 from bigtreetech/master
kisslorand Dec 19, 2020
87ccabf
Merge pull request #13 from bigtreetech/master
kisslorand Dec 24, 2020
853df34
Post-merge fixes
kisslorand Dec 24, 2020
a4f3047
Merge branch 'master' of https://github.com/bigtreetech/BIGTREETECH-T…
kisslorand Dec 24, 2020
2b9234b
Post-merge fixes
kisslorand Dec 24, 2020
8439b31
Merge branch 'master' of https://github.com/bigtreetech/BIGTREETECH-T…
kisslorand Dec 26, 2020
158afb5
Merge branch 'master' of https://github.com/bigtreetech/BIGTREETECH-T…
kisslorand Dec 30, 2020
5868fe9
Merge pull request #15 from bigtreetech/master
kisslorand Dec 31, 2020
4e11d50
Merge branch 'master' of https://github.com/kisslorand/BIGTREETECH-TFT
kisslorand Dec 31, 2020
c33ae2b
Update prebuilt binaries
Dec 31, 2020
999a49b
Standard Deviation
kisslorand Jan 5, 2021
03a27f3
Merge branch 'master' of https://github.com/bigtreetech/BIGTREETECH-T…
kisslorand Jan 5, 2021
1e0985b
Update prebuilt binaries
Jan 5, 2021
b385905
compiled size reduction
kisslorand Jan 5, 2021
9e5e449
compiled size reduction
kisslorand Jan 6, 2021
4da84f8
Merge branch 'Standard-Deviation' of https://github.com/kisslorand/BI…
kisslorand Jan 6, 2021
2a62a8d
SaferStringFormatConcat
kisslorand Jan 6, 2021
b238210
Merge branch 'master' of https://github.com/bigtreetech/BIGTREETECH-T…
kisslorand Jan 8, 2021
24766a9
Merge branch 'master' of https://github.com/kisslorand/BIGTREETECH-TF…
kisslorand Jan 8, 2021
3a812d9
Merge branch 'master' of https://github.com/bigtreetech/BIGTREETECH-T…
kisslorand Jan 12, 2021
9c40779
sync
Msq001 Jan 12, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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