Skip to content

Commit b4a2217

Browse files
committed
Changelog and version bump
1 parent 2fbfb96 commit b4a2217

File tree

4 files changed

+24
-7
lines changed

4 files changed

+24
-7
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## v1.6.0
4+
5+
This update contains API breaking changes to the SCPI server. This was necessary because the previous implementation did not follow the standard completely. If you were talking to the SCPI server directly yourself, you will need to make the required changes. If you are using the provided libreVNA.py class, you just need to update that file.
6+
7+
- New featues:
8+
- New SCPI command: read/write preferences
9+
- New API: option to stream live trace data
10+
11+
- Bugfixes and improvements:
12+
- Keep de-embedding active when changing settings
13+
- Improvements to trace averaging
14+
- adjust SCPI API to conform better with the standard:
15+
- new required commands RST, CLS, ESE, ESR, OPC and WAI
16+
- no responses to commands, errors are reported through status registers instead
17+
- TDR updates happen during a sweep not just afterwards (with configurable update rate)
18+
- Additional sanity checks when loading calibration files
19+
320
## v1.5.1
421

522
Mostly bugfixes with only minor new features

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,5 +397,5 @@ QMAKE_CXXFLAGS += -Wno-deprecated -Wno-deprecated-declarations -Wno-deprecated-c
397397
CONFIG += c++17
398398
REVISION = $$system(git rev-parse HEAD)
399399
DEFINES += GITHASH=\\"\"$$REVISION\\"\"
400-
DEFINES += FW_MAJOR=1 FW_MINOR=5 FW_PATCH=1 FW_SUFFIX=""
400+
DEFINES += FW_MAJOR=1 FW_MINOR=6 FW_PATCH=0 FW_SUFFIX=""
401401
DEFINES -= _UNICODE UNICODE

Software/VNA_embedded/.cproject

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
<listOptionValue builtIn="false" value="_RTOS"/>
4444
<listOptionValue builtIn="false" value="_SNK"/>
4545
<listOptionValue builtIn="false" value="FW_MAJOR=1"/>
46-
<listOptionValue builtIn="false" value="FW_MINOR=5"/>
47-
<listOptionValue builtIn="false" value="FW_PATCH=1"/>
46+
<listOptionValue builtIn="false" value="FW_MINOR=6"/>
47+
<listOptionValue builtIn="false" value="FW_PATCH=0"/>
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"/>
@@ -90,8 +90,8 @@
9090
<option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="false" id="com.st.stm32cube.ide.mcu.gnu.managedbuild.tool.cpp.compiler.option.definedsymbols.536220696" name="Define symbols (-D)" superClass="com.st.stm32cube.ide.mcu.gnu.managedbuild.tool.cpp.compiler.option.definedsymbols" useByScannerDiscovery="false" valueType="definedSymbols">
9191
<listOptionValue builtIn="false" value="DEBUG"/>
9292
<listOptionValue builtIn="false" value="FW_MAJOR=1"/>
93-
<listOptionValue builtIn="false" value="FW_MINOR=5"/>
94-
<listOptionValue builtIn="false" value="FW_PATCH=1"/>
93+
<listOptionValue builtIn="false" value="FW_MINOR=6"/>
94+
<listOptionValue builtIn="false" value="FW_PATCH=0"/>
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ MCU = $(CPU) -mthumb $(FLOAT-ABI) $(FPU)
100100
# C defines
101101
C_DEFS = \
102102
-DFW_MAJOR=1 \
103-
-DFW_MINOR=5 \
104-
-DFW_PATCH=1 \
103+
-DFW_MINOR=6 \
104+
-DFW_PATCH=0 \
105105
-DDEBUG \
106106
-DUSE_FULL_LL_DRIVER \
107107
-DHW_REVISION="'B'" \

0 commit comments

Comments
 (0)