Skip to content

Commit

Permalink
Merge pull request #1 from RobertZ2011/basic-skeleton
Browse files Browse the repository at this point in the history
Basic skeleton
  • Loading branch information
felipebalbi authored Jan 3, 2025
2 parents 9141011 + bf531f6 commit 66cf40e
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ jobs:
fail-fast: false
matrix:
commit: ${{ fromJSON(needs.commit_list.outputs.commits) }}
msrv: ["1.79"] # We're relying on namespaced-features, which
msrv: ["1.83"] # We're relying on namespaced-features, which
# was released in 1.60
#
# We also depend on `fixed' which requires rust
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,8 @@ Cargo.lock

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb


# Added by cargo

/target
2 changes: 1 addition & 1 deletion CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# Please fill in with your code owners
* @felipebalbi @jerrysxie @RobertZ2011
8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[package]
name = "tps6699x"
version = "0.1.0"
edition = "2021"
license = "MIT"
rust-version = "1.83"

[dependencies]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# embedded-rust-template
Template repository for Embedded Rust development
# tps6699x
Driver for TPS6699x series PD controller
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#![no_std]

0 comments on commit 66cf40e

Please sign in to comment.