File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,11 @@ Adafruit_FlashTransport_RP2040 flashTransport;
51
51
#error No QSPI/SPI flash are defined on your board variant.h!
52
52
#endif
53
53
54
+ #if defined(PRINT_DEPENDENCIES)
55
+ #include " print_dependencies.h"
56
+ #endif
57
+
58
+
54
59
Adafruit_SPIFlash flash (&flashTransport); // /< SPIFlash object
55
60
FatVolume wipperFatFs; // /< File system object from Adafruit SDFat
56
61
@@ -279,6 +284,11 @@ bool Wippersnapper_FS::createBootFile() {
279
284
bootFile.print (" MAC Address: " );
280
285
bootFile.println (sMAC );
281
286
287
+ #ifdef PRINT_DEPENDENCIES
288
+ bootFile.println (" Build Dependencies:" );
289
+ bootFile.println (project_dependencies);
290
+ #endif
291
+
282
292
bootFile.flush ();
283
293
bootFile.close ();
284
294
is_success = true ;
You can’t perform that action at this time.
0 commit comments