|
51 | 51 | #if 1 // just for collapsing
|
52 | 52 | // Product-specific configuration
|
53 | 53 | #if defined(PRODUCT_DEFAULT)
|
54 |
| - #include "include\configs\product\default.h" |
| 54 | + #include "./include/configs/product/default.h" |
55 | 55 | #elif defined(PRODUCT_1628_RINGS)
|
56 |
| - #include "include\configs\product\1628rings.h" |
| 56 | + #include "./include/configs/product/1628rings.h" |
57 | 57 | #elif defined(PRODUCT_KRAKEN64)
|
58 |
| - #include "include\configs\product\kraken64.h" |
| 58 | + #include "./include/configs/product/kraken64.h" |
59 | 59 | #elif defined(PRODUCT_FIBONACCI32)
|
60 |
| - #include "include\configs\product\fibonacci32.h" |
| 60 | + #include "./include/configs/product/fibonacci32.h" |
61 | 61 | #elif defined(PRODUCT_FIBONACCI64_FULL) || defined(PRODUCT_FIBONACCI64_MINI) || defined(PRODUCT_FIBONACCI64_MICRO) || defined(PRODUCT_FIBONACCI64_NANO)
|
62 |
| - #include "include\configs\product\fibonacci64.h" |
| 62 | + #include "./include/configs/product/fibonacci64.h" |
63 | 63 | #elif defined(PRODUCT_FIBONACCI128)
|
64 |
| - #include "include\configs\product\fibonacci128.h" |
| 64 | + #include "./include/configs/product/fibonacci128.h" |
65 | 65 | #elif defined(PRODUCT_FIBONACCI256)
|
66 |
| - #include "include\configs\product\fibonacci256.h" |
| 66 | + #include "./include/configs/product/fibonacci256.h" |
67 | 67 | #elif defined(PRODUCT_FIBONACCI512)
|
68 |
| - #include "include\configs\product\fibonacci512.h" |
| 68 | + #include "./include/configs/product/fibonacci512.h" |
69 | 69 | #elif defined(PRODUCT_ESP8266_THING) // aka parallel
|
70 |
| - #include "include\configs\product\esp8266_thing.h" |
| 70 | + #include "./include/configs/product/esp8266_thing.h" |
71 | 71 | #else
|
72 | 72 | #error "Must define product to build against"
|
73 | 73 | #endif
|
74 | 74 |
|
75 | 75 | // Board-specific configuration
|
76 | 76 | #if defined(ARDUINO_ARCH_ESP32)
|
77 |
| - #include "include\configs\controller\controller_esp32.h" |
| 77 | + #include "./include/configs/controller/controller_esp32.h" |
78 | 78 | #elif defined(ARDUINO_ARCH_ESP8266)
|
79 |
| - #include "include\configs\controller\controller_esp8266.h" |
| 79 | + #include "./include/configs/controller/controller_esp8266.h" |
80 | 80 | #else
|
81 | 81 | #error "Unknown board type ... currently only support ESP8266 and ESP32"
|
82 | 82 | #endif
|
|
0 commit comments