LinkIt Smart 7688を使ってみる

プログラム開発環境

こ ちらのページの中ほどに、LinkIt Smart 7688 Developer’s Guide へのリンクが有ります。
LinkIt Smart 7688 Developer’s Guide の3章に、プログラム開発環境の詳しい説明が有ります。
これによると、サポートしている開発環境は以下の3つです。

c/c++
RAMが小さいのでボード上で開発環境を動かすことができません。
OS XかLinux上に開発環境を構築し、そこでビルドしたバイナリーをscpかsambaでコピーして動かします。

Python
以下の環境が標準で用意されています。
root@mylinkit:~# python --version
Python 2.7.9

Node.js
以下の環境が標準で用意されています。
root@mylinkit:~# node --version
v0.12.7

c/c++はいちいちコピーが面倒です。
nodeは言語仕様をよく知らないので、これ以降pythonでのプログラム開発を紹介していく予定です。
標準でインストールされているpythonパッケージは以下の通りです。
python-pipがインストールされているので、パッケージの追加は簡単にできると思います。
root@mylinkit:~# opkg list-installed | grep python
python - 2.7.9-6
python-base - 2.7.9-6
python-codecs - 2.7.9-6
python-compiler - 2.7.9-6
python-ctypes - 2.7.9-6
python-db - 2.7.9-6
python-decimal - 2.7.9-6
python-distutils - 2.7.9-6
python-email - 2.7.9-6
python-gdbm - 2.7.9-6
python-light - 2.7.9-6
python-logging - 2.7.9-6
python-multiprocessing - 2.7.9-6
python-ncurses - 2.7.9-6
python-openssl - 2.7.9-6
python-pip - 1.5.6-1
python-pydoc - 2.7.9-6
python-pyserial - 2.7-1
python-setuptools - 7.0-1
python-sqlite3 - 2.7.9-6
python-unittest - 2.7.9-6
python-xml - 2.7.9-6

続く....