Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/platform/lpc804/lpc804.ino
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
// its own variant core (zackees/ArduinoCore-LPC8xx) provides the real
// register-level GPIO implementation.

#include <Arduino.h>

#ifndef LED_BUILTIN
#define LED_BUILTIN 0
#endif
Expand Down
2 changes: 2 additions & 0 deletions tests/platform/lpc845/lpc845.ino
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
// its own variant core (zackees/ArduinoCore-LPC8xx) provides the real
// register-level GPIO implementation.

#include <Arduino.h>

#ifndef LED_BUILTIN
#define LED_BUILTIN 0
#endif
Expand Down
2 changes: 2 additions & 0 deletions tests/platform/lpc845_build_flags/src/main.ino
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
// nxplpc library compile path. A working build proves the orchestrator now
// folds `ctx.user_flags` into the `LibraryBuildEnv` flag set.

#include <Arduino.h>

extern void check_flag_no_op();

void setup() {
Expand Down
2 changes: 2 additions & 0 deletions tests/platform/lpc845brk/lpc845brk.ino
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
#include <Arduino.h>

void setup() {}
void loop() {}
2 changes: 2 additions & 0 deletions tests/platform/lpcxpresso804/lpcxpresso804.ino
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
#include <Arduino.h>

void setup() {}
void loop() {}
2 changes: 2 additions & 0 deletions tests/platform/lpcxpresso845max/lpcxpresso845max.ino
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
#include <Arduino.h>

void setup() {}
void loop() {}
Loading