LoginSignup
7

More than 5 years have passed since last update.

Yosemiteでmbedにプログラムを書き込めない問題の対処法

Posted at

YosemiteにアップデートしたMacにmbedを接続すると、読み取り専用ディスクと認識されプログラムの書き込みができない。

mountコマンドでmbedを認識し直す

ターミナル.appで下のコマンドを実行してmbedをMacに認識し直させる。

Terminal.app
sudo mount -u -w -o sync /Volumes/MBED

ターミナル.appでhexファイルをコピーする

通常のような、ドラッグ&ドロップでhexファイルをmbedに書き込むことができないので、ターミナルでファイルをコピーする。

Terminal.app
cp TARGET.hex /Volumes/MBED

参考サイト

mbed From - Problems with mbed on OSX Yosemite

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
7