Provide minimal setup/loop stubs that report the incompatibility
| 24 | |
| 25 | // Provide minimal setup/loop stubs that report the incompatibility |
| 26 | void setup() { |
| 27 | #ifdef EXAMPLE_PLATFORM_FILTER |
| 28 | printf("[SKIP] Example requires filter: %s (compiled on stub/native platform)\n", |
| 29 | EXAMPLE_STR(EXAMPLE_PLATFORM_FILTER)); |
| 30 | #else |
| 31 | printf("[SKIP] Example is platform-specific (compiled on stub/native platform)\n"); |
| 32 | #endif |
| 33 | } |
| 34 | void loop() {} |
| 35 | |
| 36 | #else |