Skip to content
Draft
Show file tree
Hide file tree
Changes from 3 commits
Commits
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
13 changes: 13 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions app/observer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
[package]
edition = "2024"
readme = "README.md"
name = "observer"
version = "0.1.0"

[features]
dump = ["kern/dump"]
measurement-handoff = ["drv-stm32h7-startup/measurement-handoff"]

[dependencies]
cfg-if = { workspace = true }
cortex-m = { workspace = true }
cortex-m-rt = { workspace = true }
stm32h7 = { workspace = true, features = ["rt", "stm32h753"] }

drv-stm32h7-startup = { path = "../../drv/stm32h7-startup", features = ["h753"] }
kern = { path = "../../sys/kern" }

[build-dependencies]
build-util = {path = "../../build/util"}

# this lets you use `cargo fix`!
[[bin]]
name = "observer"
test = false
doctest = false
bench = false

[lints]
workspace = true
9 changes: 9 additions & 0 deletions app/observer/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Observer Service Processor (SP) firmware

The Observer interfaces with the power shelf in the Oxide rack.
This hardware is the successor to the Power Shelf Controller (PSC).

This folder contains the firmware that runs on its service processor (SP).

The Root of Trust firmware is common across multiple boards and can be found
in the [`oxide-rot-1` subfolder](../oxide-rot-1).
Loading
Loading