|
@@ -1,32 +0,0 @@
|
1
|
|
-# This HAL is for STM32F103 boards used with libmaple/stm32duino Arduino core.
|
2
|
|
-
|
3
|
|
-# This HAL is in development and has not been tested with an actual printer.
|
4
|
|
-
|
5
|
|
-### The stm32 core needs a modification in the file util.h to avoid conflict with Marlin macros for Debug.
|
6
|
|
-Since only 1 file needs change in the stm32duino core, it's preferable over making changes to Marlin.
|
7
|
|
-
|
8
|
|
-
|
9
|
|
-After these lines:
|
10
|
|
-<>
|
11
|
|
-#else
|
12
|
|
-#define ASSERT_FAULT(exp) (void)((0))
|
13
|
|
-#endif
|
14
|
|
-<>
|
15
|
|
-
|
16
|
|
-Add the following 3 lines:
|
17
|
|
-<>
|
18
|
|
-#undef DEBUG_NONE
|
19
|
|
-#undef DEBUG_FAULT
|
20
|
|
-#undef DEBUG_ALL
|
21
|
|
-<>
|
22
|
|
-
|
23
|
|
-### Main developers:
|
24
|
|
-Victorpv
|
25
|
|
-
|
26
|
|
-
|
27
|
|
-### Most up to date repository for this HAL:
|
28
|
|
-https://github.com/victorpv/Marlin/tree/bugfix-2.0.x
|
29
|
|
-
|
30
|
|
-PRs should be first sent to that fork, and once tested merged to Marlin bugfix-2.0.x branch.
|
31
|
|
-
|
32
|
|
-
|