File tree Expand file tree Collapse file tree 2 files changed +22
-4
lines changed Expand file tree Collapse file tree 2 files changed +22
-4
lines changed Original file line number Diff line number Diff line change 1
1
name =ESP3DLib
2
- version =1.0.11
2
+ version =1.0.12
3
3
author =Luc Lebosse
4
4
maintainer =Luc Lebosse, <
[email protected] >
5
5
sentence =A 3D printer front end for ESP boards.
Original file line number Diff line number Diff line change 22
22
#define ESP_XSTR_ (M ) #M
23
23
#define ESP_XSTR (M ) ESP_XSTR_(M)
24
24
#endif
25
- #define MARLIN_HAL_PATH (PATH ) HAL_PATH( ../../../../../Marlin/src/HAL, PATH)
26
- #define MARLIN_PATH (PATH ) ESP_XSTR(../../../../../Marlin/src/PATH)
25
+ #ifndef SRCHOME
26
+ #define SRCHOME ../../../../../Marlin/src
27
+ #endif
28
+ #ifndef HALHOME
29
+ #define HALHOME SRCHOME/HAL
30
+ #endif
31
+ #define MARLIN_HAL_PATH (PATH ) HAL_PATH(HALHOME, PATH)
32
+ #define MARLIN_PATH (PATH ) ESP_XSTR(SRCHOME/PATH)
33
+
34
+ #if 0
35
+ #define HAL_INCLUDE MARLIN_HAL_PATH(hal-file.h)
36
+ #define SRC_INCLUDE MARLIN_PATH(src-file.h)
37
+ static_assert(false,
38
+ " SRCHOME='" ESP_XSTR(SRCHOME) "'"
39
+ " HALHOME='" ESP_XSTR(HALHOME) "'"
40
+ " HAL_INCLUDE='" ESP_XSTR(HAL_INCLUDE) "'"
41
+ " SRC_INCLUDE='" ESP_XSTR(SRC_INCLUDE) "'"
42
+ );
43
+ #endif
44
+
27
45
#include MARLIN_PATH(inc/MarlinConfigPre.h)
28
46
#undef DISABLED
29
47
#undef _BV
30
48
// version
31
- #define LIB_VERSION " 1.0.11 "
49
+ #define LIB_VERSION " 1.0.12 "
32
50
33
51
// Allow to override the default core used by ESP3DLIB
34
52
#ifndef ESP3DLIB_RUNNING_CORE
You can’t perform that action at this time.
0 commit comments