-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from quartiq/feature/dependency-updates
Feature/dependency updates
- Loading branch information
Showing
21 changed files
with
786 additions
and
407 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
[target.'cfg(all(target_arch = "arm", target_os = "none"))'] | ||
runner = "probe-run --chip STM32H743ZITx --speed 30000" | ||
runner = "probe-rs run --chip STM32H743ZITx --log-file /dev/null" | ||
# runner = "gdb-multiarch -q -x openocd.gdb" | ||
rustflags = [ | ||
"-C", "link-arg=-Tlink.x", | ||
"-C", "link-arg=--nmagic", | ||
"-C", "target-cpu=cortex-m7", | ||
"-C", "target-feature=+fp-armv8d16", | ||
# fp-armv8d16 is unstable and not a rustc feature but accurate | ||
# fp-armv8 is unstable and a rustc feature but incorrect | ||
] | ||
|
||
[build] | ||
target = "thumbv7em-none-eabihf" | ||
target = "thumbv7em-none-eabihf" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "cargo" | ||
directory: "/" # Location of package manifests | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
interval: "weekly" | ||
time: "04:00" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [Unreleased](https://github.com/quartiq/thermostat-eem/compare/v0.1.0...master) | ||
|
||
### Changed | ||
* A DNS name for the MQTT broker of `mqtt` is now used instead of a hard-coded IP address. | ||
* A static IP can be assigned to Thermostat using the `STATIC_IP` environment variable at build | ||
time. If one is not specified, DHCP is used automatically. | ||
* Miniconf versions have been updated to v0.9.0 | ||
* Application metadata is now published to the `<prefix>/meta` topic on MQTT connections |
Oops, something went wrong.