Skip to content

Commit b645af3

Browse files
committed
Update date and copyright in the headers of the files and fix few imprecisions
1 parent 9ee9800 commit b645af3

8 files changed

Lines changed: 18 additions & 24 deletions

File tree

examples/DISCO_IOT_HTS221_DataLog_Terminal/DISCO_IOT_HTS221_DataLog_Terminal.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
* @file DISCO_IOT_HTS221_DataLog_Terminal.ino
44
* @author WI6LABS from AST
55
* @version V1.0.0
6-
* @date 7 July 2017
6+
* @date 7 September 2017
77
* @brief Arduino test application for the STMicrolectronics STM32 DISCO_IOT
88
* MEMS Inertial and Environmental sensor expansion board.
99
* This application makes use of C++ classes obtained from the C
1010
* components' drivers.
1111
******************************************************************************
1212
* @attention
1313
*
14-
* <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
14+
* <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
1515
*
1616
* Redistribution and use in source and binary forms, with or without modification,
1717
* are permitted provided that the following conditions are met:

examples/X_NUCLEO_IKS01A1_HTS221_DataLog_Terminal/X_NUCLEO_IKS01A1_HTS221_DataLog_Terminal.ino

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
* @file X_NUCLEO_IKS01A1_HTS221_DataLog_Terminal.ino
44
* @author AST
55
* @version V1.0.0
6-
* @date 5 August 2016
6+
* @date 7 September 2017
77
* @brief Arduino test application for the STMicrolectronics X-NUCLEO-IKS01A1
88
* MEMS Inertial and Environmental sensor expansion board.
99
* This application makes use of C++ classes obtained from the C
1010
* components' drivers.
1111
******************************************************************************
1212
* @attention
1313
*
14-
* <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
14+
* <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
1515
*
1616
* Redistribution and use in source and binary forms, with or without modification,
1717
* are permitted provided that the following conditions are met:
@@ -53,8 +53,6 @@
5353
// Components.
5454
HTS221Sensor *HumTemp;
5555

56-
char report[256];
57-
5856
void setup() {
5957
// Led.
6058
pinMode(13, OUTPUT);
@@ -71,8 +69,6 @@ void setup() {
7169
}
7270

7371
void loop() {
74-
char report[256];
75-
7672
// Led blinking.
7773
digitalWrite(13, HIGH);
7874
delay(250);

examples/X_NUCLEO_IKS01A2_HTS221_DataLog_Terminal/X_NUCLEO_IKS01A2_HTS221_DataLog_Terminal.ino

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
* @file X_NUCLEO_IKS01A2_HTS221_DataLog_Terminal.ino
44
* @author AST
55
* @version V1.0.0
6-
* @date 5 August 2016
6+
* @date 7 September 2017
77
* @brief Arduino test application for the STMicrolectronics X-NUCLEO-IKS01A2
88
* MEMS Inertial and Environmental sensor expansion board.
99
* This application makes use of C++ classes obtained from the C
1010
* components' drivers.
1111
******************************************************************************
1212
* @attention
1313
*
14-
* <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
14+
* <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
1515
*
1616
* Redistribution and use in source and binary forms, with or without modification,
1717
* are permitted provided that the following conditions are met:
@@ -53,8 +53,6 @@
5353
// Components.
5454
HTS221Sensor *HumTemp;
5555

56-
char report[256];
57-
5856
void setup() {
5957
// Led.
6058
pinMode(13, OUTPUT);
@@ -88,4 +86,4 @@ void loop() {
8886
SerialPort.print(" | Temp[C]: ");
8987
SerialPort.print(temperature, 2);
9088
SerialPort.println(" |");
91-
}
89+
}

keywords.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ HTS221Sensor KEYWORD1 HTS221Sensor
1515
Enable KEYWORD2
1616
Disable KEYWORD2
1717
ReadID KEYWORD2
18-
Reset KEYWORD2
19-
GetHumidity KEYWORD2
20-
GetTemperature KEYWORD2
18+
Reset KEYWORD2
19+
GetHumidity KEYWORD2
20+
GetTemperature KEYWORD2
2121
GetODR KEYWORD2
2222
SetODR KEYWORD2
2323
ReadReg KEYWORD2

src/HTS221Sensor.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
* @file HTS221Sensor.cpp
44
* @author AST
55
* @version V1.0.0
6-
* @date 5 August 2016
7-
* @brief Implementation of an HTS221 Humidity and Temperature sensor.
6+
* @date 7 September 2017
7+
* @brief Implementation of a HTS221 Humidity and Temperature sensor.
88
******************************************************************************
99
* @attention
1010
*
11-
* <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
11+
* <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
1212
*
1313
* Redistribution and use in source and binary forms, with or without modification,
1414
* are permitted provided that the following conditions are met:

src/HTS221Sensor.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
* @file HTS221Sensor.h
44
* @author AST
55
* @version V1.0.0
6-
* @date 5 August 2016
7-
* @brief Abstract class of an HTS221 Humidity and Temperature sensor.
6+
* @date 7 September 2017
7+
* @brief Abstract class of a HTS221 Humidity and Temperature sensor.
88
******************************************************************************
99
* @attention
1010
*
11-
* <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
11+
* <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
1212
*
1313
* Redistribution and use in source and binary forms, with or without modification,
1414
* are permitted provided that the following conditions are met:

src/HTS221_Driver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
******************************************************************************
99
* @attention
1010
*
11-
* <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
11+
* <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
1212
*
1313
* Redistribution and use in source and binary forms, with or without modification,
1414
* are permitted provided that the following conditions are met:

src/HTS221_Driver.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
******************************************************************************
99
* @attention
1010
*
11-
* <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
11+
* <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
1212
*
1313
* Redistribution and use in source and binary forms, with or without modification,
1414
* are permitted provided that the following conditions are met:

0 commit comments

Comments
 (0)