Skip to content

Rust demos running on the BBC micro:bit

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

dtcristo/microbit-demos

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

microbit-demos

Rust demos running on the BBC micro:bit

Demos

  • leds - Blinking LED pattern
  • serial_buttons - Sends button state over serial
  • serial_buttons_interrupt - Sends button state over serial, interrupts on button press/release
  • serial_echo - Echos any serial data received
  • serial_random - Generates random bytes and sent over serial
  • snake - Classic snake game
snake.mp4

Dependencies

  • rustup target add thumbv6m-none-eabi
  • arm-none-eabi-gdb - GDB debugger for Arm
  • openocd - Open On-Chip Debugger
  • picocom or minicom - Terminal emulator

The Installation guide in The Embedded Rust Book has tips to install some of these tools on different platforms.

Flashing and debugging demos

Flashing

Connect BBC micro:bit via USB and flash a given demo.

bin/flash demo_name

The micro:bit will automatically reboot and start running the demo.

Serial console

Some demos communicate over serial. For these demos start a console session in a separate terminal window. The provided shell script expects the USB console device at /dev/ttyACM0, update this if required. On macOS this may be something like /dev/cu.usbmodem14412.

bin/console

Debugging

To debug a program on the micro:bit first start the debug server.

bin/debug_server

Start a GDB session for a given demo.

bin/debug demo_name

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

Rust demos running on the BBC micro:bit

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks