From 6fe5a903b95add3c3a5bc3613cb5f007df9738bb Mon Sep 17 00:00:00 2001 From: Harry Ho Date: Tue, 2 Feb 2021 12:16:10 +0800 Subject: [PATCH] stm32: update stabilizer IP address override * Affected by https://github.com/quartiq/stabilizer/commit/2144af5bcd1bff8f409ab8a6c5fa3d9015be4c92 . --- stm32/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stm32/default.nix b/stm32/default.nix index dd1547e..a900c3d 100644 --- a/stm32/default.nix +++ b/stm32/default.nix @@ -57,9 +57,9 @@ in src = ; patchPhase = '' substituteInPlace src/hardware/configuration.rs \ - --replace "IpAddress::v4(10, 0, 16, 99)" \ + --replace "IpAddress::v4(10, 34, 16, 103)" \ "IpAddress::v4(192, 168, 1, 76)" \ - --replace "Ipv4Address::new(10, 0, 16, 1)" \ + --replace "Ipv4Address::new(10, 34, 16, 1)" \ "Ipv4Address::new(192, 168, 1, 1)" ''; };