mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-18 07:29:33 +00:00
🎨 Clean up ws
This commit is contained in:
parent
a5d097abe6
commit
4ae2a76492
3 changed files with 2 additions and 3 deletions
|
@ -3885,7 +3885,6 @@
|
|||
//#define M114_REALTIME // Real current position based on forward kinematics
|
||||
//#define M114_LEGACY // M114 used to synchronize on every call. Enable if needed.
|
||||
|
||||
|
||||
/**
|
||||
* Auto-report fan speed with M123 S<seconds>
|
||||
* Requires fans with tachometer pins
|
||||
|
|
|
@ -129,7 +129,7 @@ void GcodeSuite::M493_report(const bool forReplay/*=true*/) {
|
|||
* M493: Set Fixed-time Motion Control parameters
|
||||
*
|
||||
* S<mode> Set the motion / shaping mode. Shaping requires an X axis, at the minimum.
|
||||
*
|
||||
*
|
||||
* 0: Standard Motion
|
||||
* 1: Fixed-Time Motion
|
||||
* 10: ZV : Zero Vibration
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Marlin Binary File Transfer (BFT)
|
||||
Marlin is capable of transferring binary data to the internal storage (SD card) via serial when built with `BINARY_FILE_TRANSFER` enabled. The following is a description of the binary protocol that must be used to conduct transfers once the printer is in binary mode after running `M28 B1`.
|
||||
Marlin is capable of transferring binary data to the internal storage (SD card) via serial when built with `BINARY_FILE_TRANSFER` enabled. The following is a description of the binary protocol that must be used to conduct transfers once the printer is in binary mode after running `M28 B1`.
|
||||
|
||||
## Data Endianness
|
||||
All data structures are **little-endian**! This means that when constructing the packets with multi-byte values, the lower bits are packed first. For example, each packet should start with a 16-bit start token with the value of `0xB5AD`. The data itself should start with a value of `0xAD` followed by `0xB5` etc.
|
||||
|
|
Loading…
Reference in a new issue