0
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 3 years have passed since last update.

Spresense環境設定

Last updated at Posted at 2021-08-01

最近Spresense SDKに始めたましたが、すんなりできなかったので投稿したいと思います。
公式サイトは、3大OSを紹介していますが、わかりにくいので
大きなシェアをもつWindows環境開発にしぼって説明します。
Windowsでは、MSYS2を必要とします。MSYS2のバージョンが新しいとうまく動きませんでした。
SDKコンフィングでエラーがでます。
そこで、Spresense SDKリリースが2021年5月なのでMSYS2は2021年4月を使用しました。
Visual Studio CodeのIDEを使用します。数年前はEclipseを使っていたようですが、VSに鞍替えしたようです。

MSYS2がインストール完了したら、MSYS2を起動しpacmanコマンドで

$cd ~

更新します。

$pacman -Syu

Git,unzipコマンドを使えるようにします。

$pacman -S git
$pacman -S unzip

をインストールします。

開発に必要なパッケージをインストールします。

$curl -L https://raw.githubusercontent.com/sonydevworld/spresense/master/install-tools.sh > install-tools.sh
$bash install-tools.sh

/home/user/にspresenseenvというディレクトリができあがり、有効にします。

$source ~/spresenseenv/setup

SpresenseSDKをインストールします。(サンプルコードが含まれています。)

$git clone --recursive https://github.com/sonydevworld/spresense.git

クローンが完了すると/home/user/にspresenseディレクトリが出来上がります。

 

0
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
0
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?