Marlin/buildroot/share/PlatformIO/scripts/deeper.cpp
Scott Lahteine c6cd10a92d
Some checks are pending
CI - Build Tests / Build Test (push) Waiting to run
CI - Unit Tests / Unit Test (push) Waiting to run
CI - Validate Source Files / Validate Source Files (push) Waiting to run
🧑‍💻 Shaped axis macros, etc. (#28084)
2025-09-29 15:24:58 -05:00

15 lines
342 B
C++

/**
* Use this file to dig deeper into compile issues.
*
* Usage:
* gcc -D__MARLIN_DEPS__ -E -o - buildroot/share/PlatformIO/scripts/deeper.cpp
*
* For convenience redirect output to a file or pipe to your favorite editor.
*/
#include "../../../../Marlin/src/inc/MarlinConfig.h"
int main() {
// Insert your code here
return 0;
}