Skip to content

Commit 5557852

Browse files
committed
Add Teensy40
1 parent cfa2b28 commit 5557852

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

examples_pio/Wasm_Advanced/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ To run the example:
1111
pio run -e <device> -t upload && pio device monitor
1212
```
1313
Where `<device>` is one of:
14-
`ESP32`, `ESP8266`, `Arduino101`, `MKR1000`, `NucleoWB55RG`, `BluePill`, `TinyBLE`, `Teensy31`, `WildFireV3`
14+
`ESP32`, `ESP8266`, `Arduino101`, `MKR1000`, `NucleoWB55RG`, `BluePill`, `TinyBLE`, `Teensy31`, `Teensy40`, `WildFireV3`
1515

1616
**Note:** This example uses Wasm Linear Memory. You should be able to run it on any device that can afford to allocate 1-2 pages of Wasm Linear Memory (i.e. have >= 128KiB RAM).
17+

examples_pio/Wasm_Advanced/platformio.ini

+10
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,16 @@ platform = teensy
101101
board = teensy31
102102
upload_protocol = teensy-cli
103103

104+
src_build_flags =
105+
${env.src_build_flags}
106+
-DLED_PIN=13
107+
-O3 -flto
108+
109+
[env:Teensy40]
110+
platform = teensy
111+
board = teensy40
112+
upload_protocol = teensy-cli
113+
104114
src_build_flags =
105115
${env.src_build_flags}
106116
-DLED_PIN=13

examples_pio/Wasm_Advanced/wasm_vm/wasm_vm.ino

+5-2
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,16 @@
2020
#define NATIVE_STACK_SIZE (32*1024)
2121

2222
// For (most) devices that cannot allocate a 64KiB wasm page
23-
//#define WASM_MEMORY_LIMIT 4096
23+
#define WASM_MEMORY_LIMIT 4096
2424

2525
/*
2626
* WebAssembly app
2727
*/
2828

29-
#include "../wasm_apps/assemblyscript/app.wasm.h"
29+
#include "../wasm_apps/cpp/app.wasm.h"
30+
//#include "../wasm_apps/assemblyscript/app.wasm.h"
31+
//#include "../wasm_apps/rust/app.wasm.h"
32+
//#include "../wasm_apps/tinygo/app.wasm.h"
3033

3134
/*
3235
* API bindings

0 commit comments

Comments
 (0)