-
Notifications
You must be signed in to change notification settings - Fork 237
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
feat: Release rp235x-hal v0.3.0 #870
Closed
Closed
Commits on Nov 4, 2024
-
feat: Make it easier to specify target architecture
Create aliases build-arm run-arm build-riscv and run-riscv in .cargo/config.toml. With these defined you can now use the alias which will be converted to the full target name: cargo build-arm -> cargo build --target thumbv8m.main-none-eabihf cargo run-arm -> cargo run --target thumbv8m.main-none-eabihf cargo build-riscv -> cargo build --target riscv32imac-unknown-none-elf cargo run-risv -> cargo run --target riscv32imac-unknown-none-elf Append --release parameter to do release builds and runs. For example: cargo run-riscv --release -> cargo run --target riscv32imac-unknown-none-elf --release feat: Make it easier to specify target architecture Create aliases build-arm run-arm build-riscv and run-riscv in .cargo/config.toml. With these defined you can now use the alias which will be converted to the full target name: cargo build-arm --bin blinky -> cargo build --bin blinky --target=thumbv8m.main-none-eabihf cargo run-arm --bin blinky -> cargo run --bin blinky --target=thumbv8m.main-none-eabihf cargo build-riscv --bin blinky -> cargo build --bin blinky --target=riscv32imac-unknown-none-elf cargo run-risv --bin blinky -> cargo run --bin blinky --target=riscv32imac-unknown-none-elf Append --release parameter to do release builds and runs. For example: cargo run-risv --bin blinky --release -> cargo run --bin blinky --target=thumbv8m.main-none-eabihf --release
Configuration menu - View commit details
-
Copy full SHA for 181e9c6 - Browse repository at this point
Copy the full SHA 181e9c6View commit details -
feat: Document the aliases in README.me
Also, tweak the aliases and add dev and release modes with shorter names.
Configuration menu - View commit details
-
Copy full SHA for 64add8b - Browse repository at this point
Copy the full SHA 64add8bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 740a4d7 - Browse repository at this point
Copy the full SHA 740a4d7View commit details -
config.toml: * Use build-* rather than bld-* * Add a "custom" command example `rrr-blinky` README.md: * Show "all" examples are created if `--bin` is not specified * Show the size differential between development and release profiles * Describe aliases at the end of Getting Started using build-riscv, run-riscv and rrr-blinky
Configuration menu - View commit details
-
Copy full SHA for 4073102 - Browse repository at this point
Copy the full SHA 4073102View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7afbd06 - Browse repository at this point
Copy the full SHA 7afbd06View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1c67dfd - Browse repository at this point
Copy the full SHA 1c67dfdView commit details -
Configuration menu - View commit details
-
Copy full SHA for a453115 - Browse repository at this point
Copy the full SHA a453115View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5f9fd2e - Browse repository at this point
Copy the full SHA 5f9fd2eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3404ead - Browse repository at this point
Copy the full SHA 3404eadView commit details -
wip: Release rp235x-hal v0.3.0
Apply some review suggestions, still need to add #PR and @user.
Configuration menu - View commit details
-
Copy full SHA for 4e3070f - Browse repository at this point
Copy the full SHA 4e3070fView commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.