Skip to content

Commit d846877

Browse files
committed
move flc-asm to hal
1 parent 7842675 commit d846877

File tree

5 files changed

+431
-1
lines changed

5 files changed

+431
-1
lines changed

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[workspace]
22
members = [
33
"hal",
4-
"tests"
4+
"flc-asm",
5+
"tests",
56
]
67
resolver = "2"
78

flc-asm/.cargo/config.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[build]
2+
target = "thumbv7em-none-eabihf"

flc-asm/Cargo.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "flc-asm"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[lib]
7+
crate-type = ["staticlib"]
8+
9+
[dependencies]
10+
max78000 = { git = "https://github.com/slugsecurity/max78000" }

0 commit comments

Comments
 (0)