We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b80ff1c commit d21067dCopy full SHA for d21067d
examples/Wasm_Blink/Wasm_Blink.ino
@@ -14,7 +14,9 @@
14
*/
15
16
// Redefine the default LED pin here, if needed
17
-#define LED_PIN 13
+#ifndef LED_PIN
18
+#define LED_PIN LED_BUILTIN
19
+#endif
20
21
#define WASM_STACK_SLOTS 1024
22
#define NATIVE_STACK_SIZE (32*1024)
examples_pio/Wasm_Advanced/wasm_vm/wasm_vm.ino
-//#define LED_PIN 13
#define WASM_STACK_SLOTS 2048
0 commit comments