Initial Commit

TODOS:
1. Ensure memory.x has correct memory regions.
2. Add HAL loop delay.
This commit is contained in:
Lorenzo Good 2026-06-01 13:40:49 -04:00
commit b832ef71a2
Signed by: lorenzo
GPG key ID: 7FCD64BD81180ED0
10 changed files with 645 additions and 0 deletions

48
nix/flake.lock generated Normal file
View file

@ -0,0 +1,48 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1779796641,
"narHash": "sha256-ZsIrKmhp4vbBXoXXmR/tBXA/UCsAQiJL9vsgZEduhVY=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "25f538306313eae3927264466c70d7001dcea1df",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-25.11",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs",
"rust-overlay": "rust-overlay"
}
},
"rust-overlay": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1780284119,
"narHash": "sha256-y2wR4Mk6D/N1ID4FZa2oUMStCUxyIoRzmgOOpLzoWmo=",
"owner": "oxalica",
"repo": "rust-overlay",
"rev": "51390d0bfca0a68a8c337d215a4bbeddc2ca616e",
"type": "github"
},
"original": {
"owner": "oxalica",
"repo": "rust-overlay",
"type": "github"
}
}
},
"root": "root",
"version": 7
}

48
nix/flake.nix Normal file
View file

@ -0,0 +1,48 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
inputs@{ ... }:
let
supportedSystems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
forAllSystems = inputs.nixpkgs.lib.genAttrs supportedSystems;
buildNixpkgs =
system:
import inputs.nixpkgs {
inherit system;
overlays = [ (import inputs.rust-overlay) ];
};
in
{
devShells = forAllSystems (
system:
let
pkgs = buildNixpkgs system;
rust-toolchain = pkgs.rust-bin.fromRustupToolchainFile ../rust-toolchain.toml;
in
{
default = pkgs.mkShell {
buildInputs = with pkgs; [
gcc-arm-embedded-13
treefmt
nixpkgs-fmt
rust-toolchain
];
};
}
);
};
}