Skip to content

Commit 351b040

Browse files
committed
Version bump + changelog
1 parent d722f62 commit 351b040

File tree

5 files changed

+29
-5
lines changed

5 files changed

+29
-5
lines changed

CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Changelog
22

3+
## v1.6.2
4+
5+
Mostly bugfixes with only minor new features
6+
7+
- New features:
8+
- New SCPI commands:
9+
- Temperatures readout
10+
- Complete control over manual control via SCPI
11+
- Padding option for TDR/DFT to increase resolution
12+
- Support for dwell time (adjustable delay before each point in the sweep)
13+
- Bugfixes:
14+
- Fix crash when deleting traces with TDR/DFT math
15+
- Spectrum analyzer: Improve tracking generator frequency accuracy
16+
- Fix swapped LO and Source unlock LEDs
17+
- Reduce amount of mode switches when starting and loading setups (faster loading time)
18+
- Use correct units on spectrum analyzer graphs (dBm instead of dB)
19+
- Fix Touchstone export file ending
20+
- Update eye diagram when changing settings while the trace data does not change
21+
- Keep eye diagram trace visible when other trace is deleted
22+
- Resolve math references when duplicating "from math" traces
23+
- Update LibreCAL API, detect LibreCALs with bad factory coefficients
24+
- Fix impedance renormalization (general formulas for parameter conversions)
25+
- Fix rare and random phase reversals of S parameter measurements
26+
327
## v1.6.1
428

529
Mostly bugfixes with only minor new features

Software/PC_Application/LibreVNA-GUI/LibreVNA-GUI.pro

+1-1
Original file line numberDiff line numberDiff line change
@@ -413,5 +413,5 @@ QMAKE_CXXFLAGS += -Wno-deprecated -Wno-deprecated-declarations -Wno-deprecated-c
413413
CONFIG += c++17
414414
REVISION = $$system(git rev-parse HEAD)
415415
DEFINES += GITHASH=\\"\"$$REVISION\\"\"
416-
DEFINES += FW_MAJOR=1 FW_MINOR=6 FW_PATCH=1 FW_SUFFIX=""
416+
DEFINES += FW_MAJOR=1 FW_MINOR=6 FW_PATCH=2 FW_SUFFIX=""
417417
DEFINES -= _UNICODE UNICODE

Software/PC_Application/LibreVNA-Test/LibreVNA-Test.pro

+1-1
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,6 @@ unix:LIBS += -L/usr/lib/
443443

444444
REVISION = $$system(git rev-parse HEAD)
445445
DEFINES += GITHASH=\\"\"$$REVISION\\"\"
446-
DEFINES += FW_MAJOR=1 FW_MINOR=6 FW_PATCH=1 FW_SUFFIX=""#\\"\"-alpha.2\\"\"
446+
DEFINES += FW_MAJOR=1 FW_MINOR=6 FW_PATCH=2 FW_SUFFIX=""#\\"\"-alpha.2\\"\"
447447
DEFINES -= _UNICODE UNICODE
448448
win32:DEFINES += QMICROZ_LIBRARY

Software/VNA_embedded/.cproject

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<listOptionValue builtIn="false" value="_SNK"/>
4545
<listOptionValue builtIn="false" value="FW_MAJOR=1"/>
4646
<listOptionValue builtIn="false" value="FW_MINOR=6"/>
47-
<listOptionValue builtIn="false" value="FW_PATCH=1"/>
47+
<listOptionValue builtIn="false" value="FW_PATCH=2"/>
4848
<listOptionValue builtIn="false" value="HW_REVISION='B'"/>
4949
<listOptionValue builtIn="false" value="USE_FULL_LL_DRIVER"/>
5050
<listOptionValue builtIn="false" value="USE_HAL_DRIVER"/>
@@ -91,7 +91,7 @@
9191
<listOptionValue builtIn="false" value="DEBUG"/>
9292
<listOptionValue builtIn="false" value="FW_MAJOR=1"/>
9393
<listOptionValue builtIn="false" value="FW_MINOR=6"/>
94-
<listOptionValue builtIn="false" value="FW_PATCH=1"/>
94+
<listOptionValue builtIn="false" value="FW_PATCH=2"/>
9595
<listOptionValue builtIn="false" value="HW_REVISION='B'"/>
9696
<listOptionValue builtIn="false" value="USE_FULL_LL_DRIVER"/>
9797
<listOptionValue builtIn="false" value="USE_HAL_DRIVER"/>

Software/VNA_embedded/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ MCU = $(CPU) -mthumb $(FLOAT-ABI) $(FPU)
101101
C_DEFS = \
102102
-DFW_MAJOR=1 \
103103
-DFW_MINOR=6 \
104-
-DFW_PATCH=1 \
104+
-DFW_PATCH=2 \
105105
-DDEBUG \
106106
-DUSE_FULL_LL_DRIVER \
107107
-DHW_REVISION="'B'" \

0 commit comments

Comments
 (0)