diff options
author | deadprogram <[email protected]> | 2024-06-10 19:43:15 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-06-11 07:57:58 +0200 |
commit | 880e9404177bb2dae45a4fead141e96cd4b2024a (patch) | |
tree | f060cbf25956b229d5e2b8a9616d2e54403c0c34 /targets | |
parent | ad6c89bf64cef2e616b5e73554db7f2d7e915477 (diff) | |
download | tinygo-880e9404177bb2dae45a4fead141e96cd4b2024a.tar.gz tinygo-880e9404177bb2dae45a4fead141e96cd4b2024a.zip |
targets: add cyw43439 tag to badger2040-w and also add new pico-w target for wireless support
Signed-off-by: deadprogram <[email protected]>
Diffstat (limited to 'targets')
-rw-r--r-- | targets/badger2040-w.json | 2 | ||||
-rw-r--r-- | targets/pico-w.json | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/targets/badger2040-w.json b/targets/badger2040-w.json index 4b29dc85b..7b7e729d1 100644 --- a/targets/badger2040-w.json +++ b/targets/badger2040-w.json @@ -3,7 +3,7 @@ "rp2040" ], "serial-port": ["2e8a:0003"], - "build-tags": ["badger2040_w"], + "build-tags": ["badger2040_w", "cyw43439"], "ldflags": [ "--defsym=__flash_size=1020K" ], diff --git a/targets/pico-w.json b/targets/pico-w.json new file mode 100644 index 000000000..0eff1afca --- /dev/null +++ b/targets/pico-w.json @@ -0,0 +1,4 @@ +{ + "inherits": ["pico"], + "build-tags": ["pico-w", "cyw43439"] +} |