Skip to content
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

SNS - I2C Temperature (HYPE-14) #12

Merged
merged 28 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
118a39a
Create outline for I2C and temperature sensor
davidbeechey Aug 21, 2024
4214a39
Merge branch 'main' into sns-i2c_temp
davidbeechey Sep 5, 2024
4b34448
Hmm trying to fix I2C problems...
davidbeechey Sep 5, 2024
4ef0cab
Fix hyped_core commit pin and read_data
kshxtij Sep 5, 2024
0d56c07
Working I2C temp sensor implementation :)
davidbeechey Sep 5, 2024
156b4ac
Finish I2C temperature sensor implementation
davidbeechey Sep 5, 2024
770c3c0
Fix typo
davidbeechey Sep 5, 2024
bf33456
Remove duplicated code
davidbeechey Sep 10, 2024
49d0ac7
Pass `TemperatureAddresses` value as an argument
davidbeechey Sep 12, 2024
4821cad
Update cargo.toml to trigger CI
davidbeechey Sep 19, 2024
5d50e56
Merge branch 'main' into sns-i2c_temp
davidbeechey Sep 19, 2024
8a36419
Update Cargo.lock
davidbeechey Sep 19, 2024
c52e441
Update to stop CI breaking
davidbeechey Sep 19, 2024
5877132
Fix typo
davidbeechey Sep 19, 2024
faf8802
Merge branch 'main' into sns-i2c_temp
davidbeechey Oct 3, 2024
47de0b8
try restructuring Cargo workspace
davidbeechey Oct 10, 2024
4fe1d4f
Fix member names
davidbeechey Oct 10, 2024
ec234bc
Add `rustup target add thumbv7em-none-eabihf`
davidbeechey Oct 10, 2024
fbd234b
Temporarily disable CI build+test checks
davidbeechey Oct 13, 2024
cb09711
Merge branch 'main' into sns-i2c_temp
davidbeechey Oct 13, 2024
5ad7cc5
Temporarily disable clippy
davidbeechey Oct 13, 2024
8080207
Restructure `io` and `boards`
davidbeechey Oct 13, 2024
5df95b9
Fix CLRF line endings
davidbeechey Oct 13, 2024
2b149c4
Reenable cargo test
kshxtij Oct 14, 2024
b443d32
Fix all clippy errors
kshxtij Oct 14, 2024
34aacdb
Fix remaining issues
davidbeechey Oct 15, 2024
0bd067f
Merge branch 'main' into sns-i2c_temp
davidbeechey Oct 15, 2024
ceb2ed1
Fix error enums
davidbeechey Oct 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,10 @@ jobs:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
working-directory: lib
- run: cargo test --verbose
working-directory: lib
- run: cargo build --verbose
working-directory: boards
- run: cargo test --verbose
working-directory: boards
Loading
Loading