tichise / mbed

1 stars 0 forks source link

mbed CLI 環境セットアップ #21

Open tichise opened 6 years ago

tichise commented 6 years ago

Homebrewのインストール

Pythonのインストール

pyenv install 2.7.14
pyenv global 2.7.14

GCC_ARM(コンパイラ)のインストール

HomebrewでGCC-ARM ToolChainを入れる。

よく下記の設定が書かれているが、gcc-arm-none-eabiが古いのが落ちてくるので×

brew tap PX4/homebrew-px4
brew update
brew install gcc-arm-none-eabi

# ダウンロードしたファイル
/usr/local/Cellar/gcc-arm-none-eabi/20160928/

pipのインストール

mbedコードのインポート

GitHub リポジトリの場合

mbed import https://github.com/ARMmbed/mbed-os-example-blinky
cd mbed-os-example-blinky
mbed deploy

実行環境の設定

mbed detect

tichise commented 6 years ago

デバッグとコーディング環境

Atomのmbed-integrationが使える。

tichise commented 6 years ago

関連