summaryrefslogtreecommitdiffstats
path: root/quantum/crc.h
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2022-11-28 07:54:00 +1100
committerNick Brassel <nick@tzarc.org>2022-11-28 07:54:00 +1100
commit4020674163fc80914059c4c9c3be5c0ae00bd150 (patch)
tree6f4187d72b04d03572adf507502afbda9726d696 /quantum/crc.h
parent8f9b49dc5b05fd3421e47aa76822a5b2199dfca6 (diff)
parent9e78e65a566487b2f4fe7b663971a01deb6ddad2 (diff)
Merge remote-tracking branch 'upstream/develop'
Diffstat (limited to 'quantum/crc.h')
-rw-r--r--quantum/crc.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/quantum/crc.h b/quantum/crc.h
index c17f5888e2..86635847d0 100644
--- a/quantum/crc.h
+++ b/quantum/crc.h
@@ -16,7 +16,8 @@
#pragma once
-#include "quantum.h"
+#include <stddef.h>
+#include <stdint.h>
/**
* The type of the CRC values.
@@ -41,4 +42,4 @@ __attribute__((weak)) void crc_init(void);
* \param[in] data_len Number of bytes in the \a data buffer.
* \return The calculated crc value.
*/
-__attribute__((weak)) uint8_t crc8(const void *data, size_t data_len); \ No newline at end of file
+__attribute__((weak)) uint8_t crc8(const void *data, size_t data_len);