diff options
Diffstat (limited to 'quantum/crc.h')
-rw-r--r-- | quantum/crc.h | 5 |
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); |