Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2018-12-18 14:00:55 +0300
committerDavid Crocker <dcrocker@eschertech.com>2018-12-18 14:00:55 +0300
commitc567e0f1f60a5eaa8afed23d8abef796aeb58c2f (patch)
treeefa01c9d62ceacf1c5f299773f657f0bc3636028 /src/Storage/CRC32.cpp
parenta0499fe6d568df74222958a47368aea291b1471c (diff)
Bug fixes to 2.02RC6
Fixed crash on homing a CoreXY machine when both DDA and Move debugging are enabled Fixed 12864 image display issues
Diffstat (limited to 'src/Storage/CRC32.cpp')
-rw-r--r--src/Storage/CRC32.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Storage/CRC32.cpp b/src/Storage/CRC32.cpp
index 88142ac9..b220721c 100644
--- a/src/Storage/CRC32.cpp
+++ b/src/Storage/CRC32.cpp
@@ -55,7 +55,7 @@ CRC32::CRC32()
Reset();
}
-void CRC32::Update(char c)
+inline void CRC32::Update(char c)
{
crc = (CRC_32_TAB[(crc ^ c) & 0xFF] ^ (crc >> 8));
}
@@ -71,4 +71,4 @@ void CRC32::Update(const char *c, size_t len)
void CRC32::Reset()
{
crc = 0xffffffff;
-} \ No newline at end of file
+}