File tree Expand file tree Collapse file tree 4 files changed +19
-9
lines changed Expand file tree Collapse file tree 4 files changed +19
-9
lines changed Original file line number Diff line number Diff line change 127
127
#include " display/ws_display_ui_helper.h"
128
128
#endif
129
129
130
- // Build dependencies
131
- #if defined(PRINT_DEPENDENCIES)
132
- #include " ../print_dependencies.h"
133
130
#define WS_VERSION \
134
- " 1.0.0-beta.89" // /< WipperSnapper app. version (semver-formatted)
135
- #else
136
- #define WS_VERSION \
137
- " 1.0.0-beta.90" // /< WipperSnapper app. version (semver-formatted)
138
- #endif
131
+ " 1.0.0-beta.91" // /< WipperSnapper app. version (semver-formatted)
139
132
140
133
#include " components/ds18x20/ws_ds18x20.h"
141
134
#include " components/pixels/ws_pixels.h"
Original file line number Diff line number Diff line change
1
+ #include " print_dependencies.h"
2
+
3
+ const char * project_dependencies = R"(
4
+ Libraries and Versions:
5
+ ** This is a placeholder, you can fill this in automatically by running arduino-cli and copying the output here. **
6
+
7
+ Platforms and Versions:
8
+ ** Board Support Package placeholder **
9
+ )" ;
Original file line number Diff line number Diff line change
1
+ #ifndef PROJECT_DEPENDENCIES_H
2
+ #define PROJECT_DEPENDENCIES_H
3
+
4
+ #define PRINT_DEPENDENCIES 1
5
+ extern const char * project_dependencies ;
6
+ #endif // PROJECT_DEPENDENCIES_H
Original file line number Diff line number Diff line change 12
12
* BSD license, all text here must be included in any redistribution.
13
13
*
14
14
*/
15
+
15
16
#if defined(ARDUINO_MAGTAG29_ESP32S2) || defined(ARDUINO_METRO_ESP32S2) || \
16
17
defined (ARDUINO_FUNHOUSE_ESP32S2) || \
17
18
defined(ADAFRUIT_PYPORTAL_M4_TITANO) || \
27
28
defined(ARDUINO_ADAFRUIT_FEATHER_ESP32S3_REVTFT) || \
28
29
defined(ARDUINO_ADAFRUIT_FEATHER_ESP32S2_REVTFT) || \
29
30
defined(ARDUINO_ADAFRUIT_QTPY_ESP32S3_N4R2)
31
+ #include " print_dependencies.h"
30
32
#include " Wippersnapper_FS.h"
31
33
// On-board external flash (QSPI or SPI) macros should already
32
34
// defined in your board variant if supported
@@ -277,7 +279,7 @@ bool Wippersnapper_FS::createBootFile() {
277
279
bootFile.print (" MAC Address: " );
278
280
bootFile.println (sMAC );
279
281
280
- #ifdef PRINT_DEPENDENCIES
282
+ #if PRINT_DEPENDENCIES
281
283
bootFile.println (" Build dependencies:" );
282
284
bootFile.println (project_dependencies);
283
285
#endif
You can’t perform that action at this time.
0 commit comments