Skip to content

Commit a398fe2

Browse files
committed
Remove trailing spaces
1 parent 1573d40 commit a398fe2

17 files changed

+52
-52
lines changed

examples/avr/basic_usage/src/main.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
* @section LICENSE
1313
*
1414
* Copyright (c) 2021 Jose Miguel Rios Rubio. All right reserved.
15-
*
15+
*
1616
* This library is free software; you can redistribute it and/or
1717
* modify it under the terms of the GNU Lesser General Public
1818
* License as published by the Free Software Foundation; either
1919
* version 2.1 of the License, or (at your option) any later version.
20-
*
20+
*
2121
* This library is distributed in the hope that it will be useful,
2222
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2323
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2424
* Lesser General Public License for more details.
25-
*
25+
*
2626
* You should have received a copy of the GNU Lesser General Public
2727
* License along with this library; if not, write to the Free Software
2828
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

src/hal/arduino/minbasecli_arduino.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ bool MINBASECLI_ARDUINO::hal_setup(void* iface, const uint32_t baud_rate)
9292
/**
9393
* @details
9494
* This function return the number of bytes received by the interface that are
95-
* available to be read.
95+
* available to be read.
9696
*/
9797
size_t MINBASECLI_ARDUINO::hal_iface_available()
9898
{

src/hal/arduino/minbasecli_arduino.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,23 @@
77
*
88
* @section DESCRIPTION
99
*
10-
* A simple Command Line Interface C++ library implementation with HAL
10+
* A simple Command Line Interface C++ library implementation with HAL
1111
* emphasis to be used in different kind of devices and frameworks.
1212
*
1313
* @section LICENSE
1414
*
1515
* Copyright (c) 2021 Jose Miguel Rios Rubio. All right reserved.
16-
*
16+
*
1717
* This library is free software; you can redistribute it and/or
1818
* modify it under the terms of the GNU Lesser General Public
1919
* License as published by the Free Software Foundation; either
2020
* version 2.1 of the License, or (at your option) any later version.
21-
*
21+
*
2222
* This library is distributed in the hope that it will be useful,
2323
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2424
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2525
* Lesser General Public License for more details.
26-
*
26+
*
2727
* You should have received a copy of the GNU Lesser General Public
2828
* License along with this library; if not, write to the Free Software
2929
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

src/hal/avr/minbasecli_avr.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ bool MINBASECLI_AVR::hal_setup(void* iface, const uint32_t baud_rate)
8888
/**
8989
* @details
9090
* This function return the number of bytes received by the interface that are
91-
* available to be read.
91+
* available to be read.
9292
*/
9393
size_t MINBASECLI_AVR::hal_iface_available()
9494
{

src/hal/avr/minbasecli_avr.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@
1313
* @section LICENSE
1414
*
1515
* Copyright (c) 2021 Jose Miguel Rios Rubio. All right reserved.
16-
*
16+
*
1717
* This library is free software; you can redistribute it and/or
1818
* modify it under the terms of the GNU Lesser General Public
1919
* License as published by the Free Software Foundation; either
2020
* version 2.1 of the License, or (at your option) any later version.
21-
*
21+
*
2222
* This library is distributed in the hope that it will be useful,
2323
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2424
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2525
* Lesser General Public License for more details.
26-
*
26+
*
2727
* You should have received a copy of the GNU Lesser General Public
2828
* License along with this library; if not, write to the Free Software
2929
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
@@ -116,7 +116,7 @@ class MINBASECLI_AVR
116116
/* Private Attributes */
117117

118118
private:
119-
119+
120120
/**
121121
* @brief Pointer to interfce used.
122122
*/

src/hal/espidf/minbasecli_espidf.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ bool MINBASECLI_ESPIDF::hal_setup(void* iface, const uint32_t baud_rate)
112112
/**
113113
* @details
114114
* This function return the number of bytes received by the interface that are
115-
* available to be read.
115+
* available to be read.
116116
*/
117117
size_t MINBASECLI_ESPIDF::hal_iface_available()
118118
{

src/hal/espidf/minbasecli_espidf.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,23 @@
77
*
88
* @section DESCRIPTION
99
*
10-
* A simple Command Line Interface C++ library implementation with HAL
10+
* A simple Command Line Interface C++ library implementation with HAL
1111
* emphasis to be used in different kind of devices and frameworks.
1212
*
1313
* @section LICENSE
1414
*
1515
* Copyright (c) 2021 Jose Miguel Rios Rubio. All right reserved.
16-
*
16+
*
1717
* This library is free software; you can redistribute it and/or
1818
* modify it under the terms of the GNU Lesser General Public
1919
* License as published by the Free Software Foundation; either
2020
* version 2.1 of the License, or (at your option) any later version.
21-
*
21+
*
2222
* This library is distributed in the hope that it will be useful,
2323
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2424
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2525
* Lesser General Public License for more details.
26-
*
26+
*
2727
* You should have received a copy of the GNU Lesser General Public
2828
* License along with this library; if not, write to the Free Software
2929
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
@@ -75,12 +75,12 @@ class MINBASECLI_ESPIDF
7575
char th_rx_read[MINBASECLI_MAX_READ_SIZE];
7676

7777
/**
78-
* @brief th_rx_read head index for circular buffer behaviour.
78+
* @brief th_rx_read head index for circular buffer behaviour.
7979
*/
8080
uint32_t th_rx_read_head;
81-
81+
8282
/**
83-
* @brief th_rx_read tail index for circular buffer behaviour.
83+
* @brief th_rx_read tail index for circular buffer behaviour.
8484
*/
8585
uint32_t th_rx_read_tail;
8686

src/hal/linux/minbasecli_linux.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ bool MINBASECLI_LINUX::hal_setup(void* iface, const uint32_t baud_rate)
9595
/**
9696
* @details
9797
* This function return the number of bytes received by the interface that are
98-
* available to be read.
98+
* available to be read.
9999
*/
100100
size_t MINBASECLI_LINUX::hal_iface_available()
101101
{

src/hal/linux/minbasecli_linux.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,23 @@
77
*
88
* @section DESCRIPTION
99
*
10-
* A simple Command Line Interface C++ library implementation with HAL
10+
* A simple Command Line Interface C++ library implementation with HAL
1111
* emphasis to be used in different kind of devices and frameworks.
1212
*
1313
* @section LICENSE
1414
*
1515
* Copyright (c) 2021 Jose Miguel Rios Rubio. All right reserved.
16-
*
16+
*
1717
* This library is free software; you can redistribute it and/or
1818
* modify it under the terms of the GNU Lesser General Public
1919
* License as published by the Free Software Foundation; either
2020
* version 2.1 of the License, or (at your option) any later version.
21-
*
21+
*
2222
* This library is distributed in the hope that it will be useful,
2323
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2424
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2525
* Lesser General Public License for more details.
26-
*
26+
*
2727
* You should have received a copy of the GNU Lesser General Public
2828
* License along with this library; if not, write to the Free Software
2929
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
@@ -78,7 +78,7 @@ class MINBASECLI_LINUX
7878
* @brief th_rx_read head index for circular buffer behaviour.
7979
*/
8080
uint32_t th_rx_read_head;
81-
81+
8282
/**
8383
* @brief th_rx_read tail index for circular buffer behaviour.
8484
*/

src/hal/none/minbasecli_none.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ bool MINBASECLI_LINUX::hal_setup(void* iface, const uint32_t baud_rate)
9191
/**
9292
* @details
9393
* This function return the number of bytes received by the interface that are
94-
* available to be read.
94+
* available to be read.
9595
*/
9696
size_t MINBASECLI_NONE::hal_iface_available()
9797
{

0 commit comments

Comments
 (0)