-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Douglas Reis <[email protected]>
- Loading branch information
Showing
4 changed files
with
48 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Ibex Rust stack | ||
This a embedded Rust software stack for whom is enthusiast about Rust, embedded systems, RISC-V and open source. | ||
|
||
## Installation | ||
Install Rust:<https://www.rust-lang.org/tools/install>. | ||
|
||
## Demos application | ||
- [Hello world](demo/hello_world/README.md) | ||
- [LED](demo/led/README.md) | ||
|
||
## Running on the ARTY A7 FPGA | ||
Before running, you need to build and load the bitstream to the board as described [here](../../README.md#building-fpga-bitstream). | ||
``` | ||
cargo run --bin led | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# LED | ||
|
||
This is a interactive demo application that light the LEDs based on the the buttons pressed on the ARTY A7 board while outputs the logs via UART. | ||
|
||
## How to build and load | ||
1. Build and Load the bistream as described [here](../../../../README.md#building-fpga-bitstream). | ||
2. Connect to UART to see the console. | ||
```sh | ||
screen /dev/ttyUSB1 115200 | ||
``` | ||
3. Build and load the application | ||
``` | ||
cargo run | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters