$ git clone https://github.com/k-mana/pico-mruby.git --recursive
または
$ git clone https://github.com/k-mana/pico-mruby.git
$ cd pico-mruby
$ git submodule update --init --recursive
$ sudo apt install cmake build-essential gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib rake
$ cd pico-mruby
$ mkdir build
$ cd build
$ cmake ..
$ cmake --build .
pico-sdkのissue#623が発生すると動作しません。 その場合は、このパッチを適用してください。
デフォルトはUSBシリアル
- build/src/hello_world/hello_world.uf2
- スクリプトまたはバイトコードを埋め込んだサンプル。
- build/src/pico_mirb/pico_mirb.uf2
- REPL(Read-Eval-Print Loop)
- build/src/pico_mruby/pico_mruby.uf2
- USBマスストレージにcode.rbまたはcode.mrbが存在する場合、自動的に実行する。
- 実行する優先順位は以下です。
- code.mrb
- code.rb
- REPL
- USBマスストレージに書き込むと自動的に再起動します。
- code.rbまたはcode.mrbの実行中にシリアル入力をするとREPLモードになります。
$ git clone https://github.com/k-mana/pico-mruby.git --recursive
or
$ git clone https://github.com/k-mana/pico-mruby.git
$ cd pico-mruby
$ git submodule update --init --recursive
$ sudo apt install cmake build-essential gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib rake
$ cd pico-mruby
$ mkdir build
$ cd build
$ cmake ..
$ cmake --build .
It does not work when issue #623 of pico-sdk occurs. In that case, please apply this patch.
Default is USB Serial.
- build/src/hello_world/hello_world.uf2
- Sample with embedded script or bytecode
- build/src/pico_mirb/pico_mirb.uf2
- REPL(Read-Eval-Print Loop)
- build/src/pico_mruby/pico_mruby.uf2
- If code.rb or code.mrb exists in the USB mass storage, it will be executed automatically.
- The priorities to execute are as follows:
- code.mrb
- code.rb
- REPL
- Writing to USB mass storage will automatically reboot the system.
- If you make a serial input while code.rb or code.mrb is running, it will enter REPL mode.