File tree 2 files changed +26
-7
lines changed
2 files changed +26
-7
lines changed Original file line number Diff line number Diff line change @@ -7,4 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## Unreleased
9
9
10
- New version for RP235x. Based on RP2040 version.
10
+ * No changes
11
+
12
+ ## [ 0.1.0] 2024-08-18 ([ Crates.io] ( https://crates.io/crates/rp235x-pac/0.1.0 ) | [ Github] ( https://github.com/rp-rs/rp235x-pac/releases/tag/v0.1.0 ) )
13
+
14
+ ### Added
15
+
16
+ * New version for RP235x.
17
+ * Taken from https://github.com/thejpster/rp-hal-rp2350-public/tree/main/rp235x-pac , which was never published to crates.io
18
+ * Builds for Arm (` thumbv8m.main-none-eabihf ` ) and RISC-V (` riscv32imac-unknown-none-elf ` )
19
+
20
+ [ Unreleased ] : https://github.com/rp-rs/rp235x-pac/compare/v0.1.0...HEAD
21
+ [ 0.1.0 ] : https://github.com/rp-rs/rp235x-pac/releases/tag/v0.1.0
Original file line number Diff line number Diff line change 1
1
[package ]
2
- name = " rp235x-pac"
3
- version = " 0.1.0"
4
- authors = [" The RP-RS team" ]
2
+ authors = [" The rp-rs Developers" ]
3
+ description = " A Peripheral Access Crate for the Raspberry Pi RP235x microcontrollers"
5
4
edition = " 2021"
6
5
homepage = " https://github.com/rp-rs/rp235x-pac"
7
- description = " A Peripheral Access Crate for the Raspberry Pi RP235x microcontrollers"
8
6
license = " BSD-3-Clause"
7
+ name = " rp235x-pac"
9
8
repository = " https://github.com/rp-rs/rp235x-pac"
9
+ version = " 0.1.0"
10
10
11
11
[package .metadata .docs .rs ]
12
12
features = [" rt" ]
13
13
targets = [" thumbv8m.main-none-eabihf" , " riscv32imac-unknown-none-elf" ]
14
14
15
+ # DO NOT include arch-specific crates here.
15
16
[dependencies ]
17
+ # Non-optional dependencies. Keep these sorted by name.
16
18
vcell = " 0.1.3"
17
- critical-section = { optional = true , version = " 1.0.0" }
18
19
20
+ # Optional dependencies. Keep these sorted by name.
21
+ critical-section = {optional = true , version = " 1.0.0" }
22
+
23
+ # These dependencies only apply in Arm mode.
19
24
[target .'thumbv8m .main-none-eabihf' .dependencies ]
25
+ # Non-optional dependencies. Keep these sorted by name.
20
26
cortex-m = " 0.7.3"
21
- cortex-m-rt = { version = " >=0.6.15,<0.8" , optional = true }
27
+
28
+ # Optional dependencies. Keep these sorted by name.
29
+ cortex-m-rt = {version = " >=0.6.15,<0.8" , optional = true }
22
30
23
31
[features ]
24
32
rt = [" cortex-m-rt" , " cortex-m-rt/device" ]
You can’t perform that action at this time.
0 commit comments