Skip to content

Commit c182933

Browse files
authored
[doxygen] remove empty line at end of block (openthread#10748)
1 parent c0b5a54 commit c182933

File tree

484 files changed

+1
-9070
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

484 files changed

+1
-9070
lines changed

doc/ot_api_doc.h

-2
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,6 @@
160160
* @}
161161
*
162162
* @}
163-
*
164163
*/
165164

166165
/**
@@ -193,5 +192,4 @@
193192
* @defgroup plat-trel TREL - Platform
194193
*
195194
* @}
196-
*
197195
*/

doc/ot_config_doc.h

-1
Original file line numberDiff line numberDiff line change
@@ -88,5 +88,4 @@
8888
* @defgroup config-wakeup Wake-up
8989
*
9090
* @}
91-
*
9291
*/

examples/apps/cli/cli_uart.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
* @def OPENTHREAD_CONFIG_CLI_UART_RX_BUFFER_SIZE
5050
*
5151
* The size of CLI UART RX buffer in bytes.
52-
*
5352
*/
5453
#ifndef OPENTHREAD_CONFIG_CLI_UART_RX_BUFFER_SIZE
5554
#if OPENTHREAD_CONFIG_REFERENCE_DEVICE_ENABLE
@@ -63,7 +62,6 @@
6362
* @def OPENTHREAD_CONFIG_CLI_TX_BUFFER_SIZE
6463
*
6564
* The size of CLI message buffer in bytes.
66-
*
6765
*/
6866
#ifndef OPENTHREAD_CONFIG_CLI_UART_TX_BUFFER_SIZE
6967
#define OPENTHREAD_CONFIG_CLI_UART_TX_BUFFER_SIZE 1024
@@ -106,7 +104,6 @@ uint16_t sSendLength;
106104
/**
107105
* Macro to acquire an exclusive lock of uart cli output
108106
* Default implementation does nothing
109-
*
110107
*/
111108
#ifndef OT_CLI_UART_OUTPUT_LOCK
112109
#define OT_CLI_UART_OUTPUT_LOCK() \
@@ -118,7 +115,6 @@ uint16_t sSendLength;
118115
/**
119116
* Macro to release the exclusive lock of uart cli output
120117
* Default implementation does nothing
121-
*
122118
*/
123119
#ifndef OT_CLI_UART_OUTPUT_UNLOCK
124120
#define OT_CLI_UART_OUTPUT_UNLOCK() \

examples/apps/cli/main.c

-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
* Initializes the CLI app.
5252
*
5353
* @param[in] aInstance The OpenThread instance structure.
54-
*
5554
*/
5655
extern void otAppCliInit(otInstance *aInstance);
5756

examples/apps/ncp/main.c

-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
* Initializes the NCP app.
5757
*
5858
* @param[in] aInstance The OpenThread instance structure.
59-
*
6059
*/
6160
extern void otAppNcpInit(otInstance *aInstance);
6261
extern void otAppNcpInitMulti(otInstance **aInstances, uint8_t count);

examples/config/ot-core-config-check-size-br.h

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
/**
3030
* This header file defines the OpenThread core configuration example for an Border Router. This is intended for use
3131
* in `script/check-size`.
32-
*
3332
*/
3433

3534
#ifndef OT_CORE_CONFIG_CHECK_SIZE_BR_H_

examples/config/ot-core-config-check-size-ftd.h

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
/**
3030
* This header file defines the OpenThread core configuration example for an FTD device (not acting as BR). This is
3131
* intended for use in `script/check-size`.
32-
*
3332
*/
3433

3534
#ifndef OT_CORE_CONFIG_CHECK_SIZE_FTD_H_

examples/config/ot-core-config-check-size-mtd.h

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
/**
3030
* This header file defines the OpenThread core configuration example for an MTD/SED device. This is intended for use
3131
* in `script/check-size`.
32-
*
3332
*/
3433

3534
#ifndef OT_CORE_CONFIG_CHECK_SIZE_MTD_H_

examples/platforms/openthread-system.h

-5
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ extern "C" {
4949
*
5050
* @param[in] argc Number of arguments in @p argv.
5151
* @param[in] argv Argument vector.
52-
*
5352
*/
5453
void otSysInit(int argc, char *argv[]);
5554

@@ -58,7 +57,6 @@ void otSysInit(int argc, char *argv[]);
5857
*
5958
* @note This function is not called by the OpenThread library. Instead, the system/RTOS should call this function
6059
* when deinitialization of OpenThread's drivers is most appropriate.
61-
*
6260
*/
6361
void otSysDeinit(void);
6462

@@ -69,7 +67,6 @@ void otSysDeinit(void);
6967
*
7068
* @note This function is not called by the OpenThread library. Instead, the system/RTOS should call this function
7169
* in the main loop to determine when to shut down and re-initialize the OpenThread instance.
72-
*
7370
*/
7471
bool otSysPseudoResetWasRequested(void);
7572

@@ -80,7 +77,6 @@ bool otSysPseudoResetWasRequested(void);
8077
* in the main loop when processing OpenThread's drivers is most appropriate.
8178
*
8279
* @param[in] aInstance The OpenThread instance structure.
83-
*
8480
*/
8581
void otSysProcessDrivers(otInstance *aInstance);
8682

@@ -89,7 +85,6 @@ void otSysProcessDrivers(otInstance *aInstance);
8985
*
9086
* @note This function is not handled by the OpenThread library. Instead, the system/RTOS should handle this function
9187
* and schedule a call to `otSysProcessDrivers()`.
92-
*
9388
*/
9489
extern void otSysEventSignalPending(void);
9590

examples/platforms/simulation/diag.c

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444

4545
/**
4646
* Diagnostics mode variables.
47-
*
4847
*/
4948
static bool sDiagMode = false;
5049

examples/platforms/simulation/entropy.c

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
/**
3030
* @file
3131
* This file implements an entropy source based on /dev/urandom or pseudo-random generator.
32-
*
3332
*/
3433

3534
#include "platform-simulation.h"

examples/platforms/simulation/platform-config.h

-10
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,12 @@
2929
/**
3030
* @file
3131
* This file includes the platform-specific configuration.
32-
*
3332
*/
3433

3534
/**
3635
* @def OPENTHREAD_SIMULATION_UART_BAUDRATE
3736
*
3837
* This setting configures the baud rate of the UART.
39-
*
4038
*/
4139
#ifndef OPENTHREAD_SIMULATION_UART_BAUDRATE
4240
#define OPENTHREAD_SIMULATION_UART_BAUDRATE B115200
@@ -46,7 +44,6 @@
4644
* @def OPENTHREAD_SIMULATION_VIRTUAL_TIME
4745
*
4846
* This setting configures whether to use virtual time (used for simulation) in simulation platform.
49-
*
5047
*/
5148
#ifndef OPENTHREAD_SIMULATION_VIRTUAL_TIME
5249
#define OPENTHREAD_SIMULATION_VIRTUAL_TIME 0
@@ -56,7 +53,6 @@
5653
* @def OPENTHREAD_SIMULATION_VIRTUAL_TIME_UART
5754
*
5855
* This setting configures whether to use virtual time for UART.
59-
*
6056
*/
6157
#ifndef OPENTHREAD_SIMULATION_VIRTUAL_TIME_UART
6258
#define OPENTHREAD_SIMULATION_VIRTUAL_TIME_UART 0
@@ -66,7 +62,6 @@
6662
* @def OPENTHREAD_PLATFORM_USE_PSEUDO_RESET
6763
*
6864
* Define as 1 to enable pseudo-reset.
69-
*
7065
*/
7166
#ifndef OPENTHREAD_PLATFORM_USE_PSEUDO_RESET
7267
#define OPENTHREAD_PLATFORM_USE_PSEUDO_RESET 0
@@ -76,15 +71,13 @@
7671
* @def OPENTHREAD_CONFIG_NCP_SPI_ENABLE
7772
*
7873
* Define as 1 to enable SPI NCP interface.
79-
*
8074
*/
8175
#ifndef OPENTHREAD_CONFIG_NCP_SPI_ENABLE
8276
#define OPENTHREAD_CONFIG_NCP_SPI_ENABLE 0
8377
#endif
8478

8579
/**
8680
* Check OTNS configurations
87-
*
8881
*/
8982
#if OPENTHREAD_CONFIG_OTNS_ENABLE
9083

@@ -98,7 +91,6 @@
9891
* @def OPENTHREAD_SIMULATION_MAX_NETWORK_SIZE
9992
*
10093
* This setting configures the maximum network size in simulation.
101-
*
10294
*/
10395
#ifndef OPENTHREAD_SIMULATION_MAX_NETWORK_SIZE
10496
#define OPENTHREAD_SIMULATION_MAX_NETWORK_SIZE 33
@@ -111,7 +103,6 @@
111103
* socket.
112104
*
113105
* This is intended for testing of the OpenThread Multicast DNS (mDNS) module.
114-
*
115106
*/
116107
#ifndef OPENTHREAD_SIMULATION_MDNS_SOCKET_IMPLEMENT_POSIX
117108
#define OPENTHREAD_SIMULATION_MDNS_SOCKET_IMPLEMENT_POSIX 0
@@ -121,7 +112,6 @@
121112
* @def OPENTHREAD_SIMULATION_IMPLMENT_INFRA_IF
122113
*
123114
* Define as 1 for the simulation platform to provide implementation of `otPlatInfra` APIs.
124-
*
125115
*/
126116
#ifndef OPENTHREAD_SIMULATION_IMPLEMENT_INFRA_IF
127117
#define OPENTHREAD_SIMULATION_IMPLEMENT_INFRA_IF 1

0 commit comments

Comments
 (0)