Skip to content

Commit

Permalink
Fixing documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-summers committed Apr 19, 2022
1 parent c8dc0c2 commit 0c5187c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

### Added
* The W5500 now operates as an external MAC, and smoltcp is used as the network stack.
* DHCP support has been added, `netmask`, `ip-address`, and `gateway` settings have been removed.
Settings are backwards compatible with previous Booster releases.

## [0.3.0]

Expand Down
3 changes: 3 additions & 0 deletions src/settings/global_settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ fn identifier_is_valid(id: &str) -> bool {
#[derive(Serialize, Deserialize)]
struct BoosterMainBoardData {
version: SemVersion,

// Note: The IP address, gateway, and netmask are unused, but left here to maintain backwards compatibility with
// settings version v1.0.0
_unused_ip_address: [u8; 4],
broker_address: [u8; 4],
_unused_gateway_address: [u8; 4],
Expand Down

0 comments on commit 0c5187c

Please sign in to comment.