Renesas
Renesas Electronics Corporation (TSE: 6723), the world's number one supplier of microcontrollers, is a premier supplier of advanced semiconductor solutions including microcontrollers, SoC solutions and a broad range of analog and power devices.
How to checkout older mbed OS 5 branch
This page shows the way to checkout the Mbed OS 5.8 release branch using Mbed Online Compiler and Mbed CLI, respectively.
- In case of using Mbed Online Compiler
- Choose mbed-os library to checkout the Mbed OS 5.8.6 release branch
- Click Revision button
- Choose the revision 35fa909 corresponding to the Mbed OS 5.8.6 release branch and then, click Switch button
- In case of using Mbed CLI
- Enter mbed-os directory incorporated in your application
- Invoke $ git pull in order to fetch the changes from remote repository and reflect those to the local repository
- Invoke $ git checkout refs/tags/mbed-os-5.8.6 in order to switch the revision of Mbed OS 5 to Mbed OS 5.8.6
Note that you should invoke $ git checkout -b <new-branch-name> refs/tags/mbed-os-5.8.6 instead if you want to create a new branch for retaining the original source tree, the commits you create, etc.
Now that Mbed-os 5.8.6 is available on your local repository, you can build Mbed related programs for GR-PEACH, GR-LYCHEE and VK-RZ/A1H!¶
ここではMbed Online Compiler、およびMbed CLIを用いてMbed OS 5.8リリースブランチをチェックアウトする方法を説明します。
- Mbed Online Compiler使用時
- Mbed OS 5.8リリースブランチをチェックアウトするプログラム上でmbed-osライブラリを選択します
- リビジョンボタンをクリックします
- リビジョン 35fa909 のリリースブランチを選択後、切り換えボタンをクリックしてください
- Mbed CLI使用時
- mbed-osディレクトリに移動
- $ git pullコマンドを実行し、gitHubのmbed-osリポジトリと同期
- $ git checkout refs/tags/mbed-os-5.8.6コマンドを実行し、Mbed OS 5.8.6リリースブランチをチェックアウト
それまでのローカルソースツリーやコミット等を保持したい場合は、上記コマンドの代わりに $ git checkout -b <new-branch-name> refs/tags/mbed-os-5.8.6 を実行してください