diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b5e845..d970278 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## v1.2.2 + +Mostly bugfixes along with the occasional new feature. + +- Additional graph features: + - Group delay option + - (Optionally) show units on all axes + +- General bugfixes, among others: + - Fixed valgrind issues (mostly uninitialized variables) + - Prevent overflow in SCPI commands + ## v1.2.1 Mostly bugfixes along with the occasional new feature. diff --git a/Software/PC_Application/Device/device.cpp b/Software/PC_Application/Device/device.cpp index a07718d..8460f3f 100644 --- a/Software/PC_Application/Device/device.cpp +++ b/Software/PC_Application/Device/device.cpp @@ -119,6 +119,7 @@ static constexpr Protocol::DeviceInfo defaultInfo = { .FW_major = 0, .FW_minor = 0, .FW_patch = 0, + .hardware_version = 1, .HW_Revision = '0', .limits_minFreq = 0, .limits_maxFreq = 6000000000, diff --git a/Software/VNA_embedded/.settings/language.settings.xml b/Software/VNA_embedded/.settings/language.settings.xml index 87b5f55..5fd3032 100644 --- a/Software/VNA_embedded/.settings/language.settings.xml +++ b/Software/VNA_embedded/.settings/language.settings.xml @@ -6,7 +6,11 @@ +<<<<<<< Updated upstream +======= + +>>>>>>> Stashed changes @@ -18,7 +22,11 @@ +<<<<<<< Updated upstream +======= + +>>>>>>> Stashed changes diff --git a/Software/VNA_embedded/.settings/stm32cubeide.project.prefs b/Software/VNA_embedded/.settings/stm32cubeide.project.prefs index b186ead..586dde5 100644 --- a/Software/VNA_embedded/.settings/stm32cubeide.project.prefs +++ b/Software/VNA_embedded/.settings/stm32cubeide.project.prefs @@ -1,4 +1,5 @@ +2F62501ED4689FB349E356AB974DBE57=EF826FD321FB312AEADE4DB74B81458C 66BE74F758C12D739921AEA421D593D3=2 -8DF89ED150041C4CBC7CB9A9CAA90856=6F84FD31C089E822CF61FFCABCD0B7D1 -DC22A860405A8BF2F2C095E5B6529F12=6F84FD31C089E822CF61FFCABCD0B7D1 +8DF89ED150041C4CBC7CB9A9CAA90856=EF826FD321FB312AEADE4DB74B81458C +DC22A860405A8BF2F2C095E5B6529F12=6E2D4146EA2709ED1E4A1764BC291F57 eclipse.preferences.version=1 diff --git a/Software/VNA_embedded/Makefile b/Software/VNA_embedded/Makefile index acfa272..117c903 100644 --- a/Software/VNA_embedded/Makefile +++ b/Software/VNA_embedded/Makefile @@ -101,7 +101,7 @@ MCU = $(CPU) -mthumb $(FLOAT-ABI) $(FPU) C_DEFS = \ -DFW_MAJOR=1 \ -DFW_MINOR=2 \ --DFW_PATCH=1 \ +-DFW_PATCH=2 \ -DUSE_FULL_LL_DRIVER \ -DHW_REVISION="'B'" \ -D__weak="__attribute__((weak))" \