Configuration: missing stdint.h include
The following error is raised in unit testing environment: Prusa-Firmware/Firmware/Configuration.h:16:14: error: ‘uint16_t’ does not name a type 16 | extern const uint16_t _nPrinterType;
This commit is contained in:
parent
10d156b28c
commit
ad1e3cb12a
|
|
@ -1,6 +1,7 @@
|
|||
#ifndef CONFIGURATION_H
|
||||
#define CONFIGURATION_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "boards.h"
|
||||
|
||||
#define STR_HELPER(x) #x
|
||||
|
|
|
|||
Loading…
Reference in New Issue