From f43e5549636a5ef3a921f8b38bb39983b5849510 Mon Sep 17 00:00:00 2001 From: Diego Date: Sun, 27 Feb 2022 16:50:55 -0300 Subject: [PATCH] Update version to 0.4.2 --- examples/CommandTree_Check/CommandTree_Check.ino | 2 +- examples/Error_Handling/Error_Handling.ino | 2 +- examples/Ethernet_Instrument/Ethernet_Instrument.ino | 8 ++++---- examples/Numeric_suffixes/Numeric_suffixes.ino | 2 +- examples/SCPI_Dimmer/SCPI_Dimmer.ino | 2 +- library.properties | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/examples/CommandTree_Check/CommandTree_Check.ino b/examples/CommandTree_Check/CommandTree_Check.ino index 9c899c6..647d6c5 100644 --- a/examples/CommandTree_Check/CommandTree_Check.ino +++ b/examples/CommandTree_Check/CommandTree_Check.ino @@ -56,7 +56,7 @@ void loop() } void Identify(SCPI_C commands, SCPI_P parameters, Stream& interface) { - interface.println(F("Vrekrer,Hash check example,#00,v0.5")); + interface.println(F("Vrekrer,Hash check example,#00,v0.4.2")); } void DoNothing(SCPI_C commands, SCPI_P parameters, Stream& interface) { diff --git a/examples/Error_Handling/Error_Handling.ino b/examples/Error_Handling/Error_Handling.ino index 4fa30e7..173a6c5 100644 --- a/examples/Error_Handling/Error_Handling.ino +++ b/examples/Error_Handling/Error_Handling.ino @@ -40,7 +40,7 @@ void loop() } void Identify(SCPI_C commands, SCPI_P parameters, Stream& interface) { - interface.println(F("Vrekrer,SCPI Error Handling Example,#00,v0.4")); + interface.println(F("Vrekrer,SCPI Error Handling Example,#00,v0.4.2")); } void GetLastEror(SCPI_C commands, SCPI_P parameters, Stream& interface) { diff --git a/examples/Ethernet_Instrument/Ethernet_Instrument.ino b/examples/Ethernet_Instrument/Ethernet_Instrument.ino index 6650b15..76cbec3 100644 --- a/examples/Ethernet_Instrument/Ethernet_Instrument.ino +++ b/examples/Ethernet_Instrument/Ethernet_Instrument.ino @@ -1,6 +1,6 @@ -#include "Arduino.h"; -#include "EEPROM.h"; -#include "EtherCard.h"; +#include "Arduino.h" +#include "EEPROM.h" +#include "EtherCard.h" #include "Vrekrer_scpi_parser.h" const int eeprom_eth_data_start = 0; @@ -68,7 +68,7 @@ void loop() { /* SCPI FUNCTIONS */ void Identify(SCPI_C commands, SCPI_P parameters, Stream &interface) { - char IDN[] = "Vrekrer,SCPI Ethernet Instrument,#00,v0.3\n"; + char IDN[] = "Vrekrer,SCPI Ethernet Instrument,#00,v0.4.2\n"; PrintToInterface(IDN); } diff --git a/examples/Numeric_suffixes/Numeric_suffixes.ino b/examples/Numeric_suffixes/Numeric_suffixes.ino index 2371086..a6c326b 100644 --- a/examples/Numeric_suffixes/Numeric_suffixes.ino +++ b/examples/Numeric_suffixes/Numeric_suffixes.ino @@ -78,7 +78,7 @@ void loop() void Identify(SCPI_C commands, SCPI_P parameters, Stream& interface) { //*IDN? // Returns the instrument's identification string - interface.println(F("Vrekrer,Arduino Numeric suffixes example,#00,v0.4")); + interface.println(F("Vrekrer,Arduino Numeric suffixes example,#00,v0.4.3")); } void QueryDigital_Input(SCPI_C commands, SCPI_P parameters, Stream& interface) { diff --git a/examples/SCPI_Dimmer/SCPI_Dimmer.ino b/examples/SCPI_Dimmer/SCPI_Dimmer.ino index bd6f4d6..4bfd068 100644 --- a/examples/SCPI_Dimmer/SCPI_Dimmer.ino +++ b/examples/SCPI_Dimmer/SCPI_Dimmer.ino @@ -56,7 +56,7 @@ void loop() } void Identify(SCPI_C commands, SCPI_P parameters, Stream& interface) { - interface.println(F("Vrekrer,Arduino SCPI Dimmer,#00,v0.4")); + interface.println(F("Vrekrer,Arduino SCPI Dimmer,#00,v0.4.2")); } void SetBrightness(SCPI_C commands, SCPI_P parameters, Stream& interface) { diff --git a/library.properties b/library.properties index 7590ae5..def9b91 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Vrekrer SCPI parser -version=0.4.1 +version=0.4.2 author=Vrekrer maintainer=Vrekrer , sentence=Simple SCPI parser for Arduino