mcu-contrib: Add Thermostat-EEM

This commit was merged in pull request #103.
This commit is contained in:
2026-02-02 12:51:37 +08:00
parent 11671a531f
commit f783a59271
2 changed files with 15 additions and 1 deletions

View File

@@ -14,7 +14,8 @@
"nixpkgs": { "type": "git", "value": "https://github.com/NixOS/nixpkgs.git nixos-25.11", "emailresponsible": false },
"mozillaOverlay": { "type": "git", "value": "https://github.com/mozilla/nixpkgs-mozilla.git", "emailresponsible": false },
"nixScripts": { "type": "git", "value": "https://git.m-labs.hk/M-Labs/nix-scripts.git", "emailresponsible": false },
"stabilizerSrc": { "type": "git", "value": "https://github.com/quartiq/stabilizer.git main", "emailresponsible": false }
"stabilizerSrc": { "type": "git", "value": "https://github.com/quartiq/stabilizer.git main", "emailresponsible": false },
"thermostatEemSrc": { "type": "git", "value": "https://github.com/quartiq/thermostat-eem.git main", "emailresponsible": false }
}
},
"thermostat": {

View File

@@ -85,3 +85,16 @@ in
};
lockin = {};
}
//
{
thermostat-eem = (buildStm32Firmware ({
name = "thermostat-eem";
src = <thermostatEemSrc>;
doCheck = false;
outputHashes = {
"serde-reflection-0.5.0" = "sha256-87vME2qufkuJV29hKQa+2ALbzI+oGFogsPACYBZWO/g=";
"platform-0.1.0" = "sha256-HG+7KZAHMuDZjQXnF4m+bzqbxCnBDqPbLsyZcdQOso0=";
"stm32h7xx-hal-0.16.0" = "sha256-DMEZzNooOY1NJpziPkuZJXY+LyrTkUWibyhM9Azu/ks=";
};
}));
}