Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New layout for move z #11

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 11 additions & 63 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spi-memory = "0.2" # For the external flash access. Will be useful when we do fi

embedded-graphics = "0.7"
embedded-graphics-core = "0.3"
lvgl = { git = "https://github.com/nviennot/lvgl-rs.git", features =["logger", "lvgl_alloc"] }
lvgl = { git = "https://github.com/thisboyiscrazy/lvgl-rs.git", rev="cc0f5d1a07fb359075181685aaae331e3277834d", features =["lvgl_alloc","logger"] }

bitflags = "1.3"
num = { version = "0.4", default-features = false }
Expand Down
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,20 @@ the Rust Embedded Book](https://docs.rust-embedded.org/book/intro/install.html),
run the following:

```bash
# prereqs (arch)
sudo pacman -Sy base-devel arm-none-eabi-gcc arm-none-eabi-newlib clang openocd python
# prereqs (ubuntu)
sudo apt install -y build-essential curl python3 gcc-arm-none-eabi gdb-multiarch libclang-dev openocd
# prereqs (macOS)
brew install armmbed/formulae/arm-none-eabi-gcc openocd

# install rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source $HOME/.cargo/env

# rust prereqs (must be ran inside repo)
rustup component add llvm-tools-preview
cargo install cargo-binutils
# Ubuntu/Debian
sudo apt install -y gcc-arm-none-eabi gdb-multiarch libclang-dev openocd
# macOS
brew install armmbed/formulae/arm-none-eabi-gcc openocd
```

You are ready for building and flashing the firmware.
Expand Down
Loading