2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

PlatformIOでXIAO RP2040を動かす

Last updated at Posted at 2023-07-09

マイコンボードも値上がりが激しい昨今ですが、そんな中でも価格も手ごろで、比較的容易に入手出来る
Seeeduino XIAO RP2040をPlatformIOで動かしてみます。
img

XIAO RP2040 はこちらにあるように、platformio.iniに

[env:seeed_xiao_rp2040]
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
board = seeed_xiao_rp2040
board_build.core = earlephilhower
board_build.filesystem_size = 0.5m
framework = arduino

を記述することでビルド可能です。
が、Windowsだとパッケージのインストール中にFilename too longエラーがでて
インストールが失敗し、その結果ビルドに失敗することがあります。
その場合は、こちらにあるように、

git config --system core.longpaths true

を実行し、
image.png
Platform Core CLIから

pio pkg uninstall -g -p https://github.com/maxgerhardt/platform-raspberrypi.git
pio pkg install -g -p https://github.com/maxgerhardt/platform-raspberrypi.git  

でインストールしなおすことでビルドが通るようになります。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?