Skip to content

Commit 748254a

Browse files
committed
Final touches before first publication
1 parent 3436395 commit 748254a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+3528
-41
lines changed

Cargo.toml.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name = "${crate}"
33
description = "Peripheral access API for ${mcu} microcontrollers (generated using svd2rust)"
44
version = "0.0.1"
55
authors = ["Michal Fita <michal.fita@gmail.com>"]
6-
categories = ["embedded", "hardware-support", "pac", "no-std"]
7-
keywords = ["no-std", "arm", "cortex-m", "atsam", "atmel", "microchip", "pac", "${mcu}"]
6+
categories = ["embedded", "hardware-support", "pac", "microchip", "atmel", "no-std"]
7+
keywords = ["no-std", "arm", "cortex-m", "atsam", "pac"]
88
license = "MIT OR Apache-2.0"
99
repository = "https://github.com/michalfita/atsams70-rust"
1010
readme = "README.md"

README.md.template

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Peripheral Access Crate ${crate} for ${mcu} 32-bit MCU from Atmel/Microchip
2+
3+
This crate contains autogenerated code to access peripherals of ${mcu} generated from official SVD files from Microchip website using [svd2rust](https://github.com/rust-embedded/svd2rust/) tool.

hal/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ keywords = [
1212
"no-std",
1313
"arm",
1414
"cortex-m",
15-
"atsams",
16-
"atsamv",
17-
"atsame",
1815
"embedded-hal",
1916
"hal"
2017
]

hal/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# ATSAMx7x Hardware Abstraction Layer
2+
3+
This is crate with implementation of HAL traits from [embedded-hal](https://crates.io/crates/embedded-hal) for following families of Atmel/MicroChip 32-bit MCUs:
4+
5+
* [ATSAMS70](https://www.microchip.com/ParamChartSearch/chart.aspx?branchID=2116)
6+
* [ATSAMV7x](https://www.microchip.com/ParamChartSearch/Chart.aspx?branchID=2117) (_to be done_)
7+
* [ATSAME70](https://www.microchip.com/ParamChartSearch/Chart.aspx?branchID=2113) (_to be done_)

pac/atsams70j19/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/target
2+
**/*.rs.bk

pac/atsams70j19/Cargo.lock

Lines changed: 199 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pac/atsams70j19/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name = "atsams70j19"
33
description = "Peripheral access API for ATSAMS70J19 microcontrollers (generated using svd2rust)"
44
version = "0.0.1"
55
authors = ["Michal Fita <michal.fita@gmail.com>"]
6-
categories = ["embedded", "hardware-support", "pac", "no-std"]
7-
keywords = ["no-std", "arm", "cortex-m", "atsam", "atmel", "microchip", "pac", "ATSAMS70J19"]
6+
categories = ["embedded", "hardware-support", "pac", "microchip", "no-std"]
7+
keywords = ["no-std", "arm", "cortex-m", "atsam", "pac"]
88
license = "MIT OR Apache-2.0"
99
repository = "https://github.com/michalfita/atsams70-rust"
1010
readme = "README.md"

pac/atsams70j19/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Peripheral Access Crate atsams70j19 for ATSAMS70J19 32-bit MCU from Atmel/Microchip
2+
3+
This crate contains autogenerated code to access peripherals of ATSAMS70J19 generated from official SVD files from Microchip website using [svd2rust](https://github.com/rust-embedded/svd2rust/) tool.

pac/atsams70j19b/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/target
2+
**/*.rs.bk

0 commit comments

Comments
 (0)