Skip to content

Commit 1d1bdd8

Browse files
xiaoxiang781216pkarashchenko
authored andcommitted
Remove the double blank line from source files
Signed-off-by: Xiang Xiao <[email protected]>
1 parent 746b68b commit 1d1bdd8

File tree

191 files changed

+0
-501
lines changed

Some content is hidden

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

191 files changed

+0
-501
lines changed

Documentation/applications/nsh/builtin.rst

-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ that in ``apps/examples/hello/Makefile`` is abstracted below:
169169
context:
170170
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
171171

172-
173172
**Other Uses of Built-In Application.** The primary purpose of builtin
174173
applications is to support command line execution of applications from
175174
NSH. However, there is one other use of builtin applications that should

Documentation/applications/nsh/commands.rst

-1
Original file line numberDiff line numberDiff line change
@@ -1843,4 +1843,3 @@ Example::
18431843

18441844
``ping6`` differs from ``ping`` in that it uses IPv6 addressing.
18451845

1846-

Documentation/applications/nsh/config.rst

-1
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,6 @@ CMD w/o ``CONFIG_NSH_VARS`` w/``CONFIG_NSH_VARS``
398398
``env`` Lists all environment variables Lists all environment variables (*only*)
399399
================== =================================== =============================================
400400

401-
402401
If Telnet is selected for the NSH console, then we must configure the
403402
resources used by the Telnet daemon and by the Telnet clients.
404403

Documentation/applications/nsh/nsh.rst

-1
Original file line numberDiff line numberDiff line change
@@ -358,4 +358,3 @@ containing the ROMFS file system image.
358358
NuttShell <#customizingnsh>`__ for additional, more detailed
359359
information about the NSH start-up script and how to modify it.
360360

361-

Documentation/components/binfmt.rst

-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ pointer to a write-able instance of :c:struct:`binfmt_s`.
7575
int (*load)(FAR struct binary_s *bin); /* Verify and load binary into memory */
7676
};
7777
78-
7978
The ``load`` method is used to load the binary format into memory. It
8079
returns either ``OK`` (0) meaning that the binary object was loaded
8180
successfully, or a negated ``errno`` indicating why the object was not

Documentation/components/drivers/block/index.rst

-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,3 @@ Block device drivers have these properties:
3838
- **Examples**. ``drivers/loop.c``,
3939
``drivers/mmcsd/mmcsd_spi.c``, ``drivers/ramdisk.c``, etc.
4040

41-

Documentation/components/drivers/character/keypad.rst

-1
Original file line numberDiff line numberDiff line change
@@ -140,4 +140,3 @@ application decoding interfaces.
140140
these interfaces. These stream interfaces are defined in
141141
``include/nuttx/streams.h``.
142142

143-

Documentation/components/drivers/character/note.rst

-2
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,6 @@ Notectl Device (``/dev/notectl``)
165165
:return: If success, 0 (``OK``) is returned and the given IRQ filter mode is set as the current settings.
166166
If failed, a negated ``errno`` is returned.
167167

168-
169168
.. _noteram:
170169

171170
Noteram Device (``/dev/note``)
@@ -174,7 +173,6 @@ Noteram Device (``/dev/note``)
174173
``/dev/note`` is the device to get the trace (instrumentation) data.
175174
The device has read function to get the data and ioctl function to control the buffer mode.
176175

177-
178176
``/dev/note`` Header Files
179177
--------------------------
180178

Documentation/components/drivers/character/timer.rst

-5
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ The first necessary thing to be done in order to use the timer driver in an appl
8181
8282
#include <nuttx/timers/timer.h>
8383
84-
8584
At an application level, the timer functionalities may be accessed through ``ioctl`` systems calls. The available ``ioctl`` commands are:
8685

8786
* :c:macro:`TCIOC_START`
@@ -140,8 +139,6 @@ These ``struct timer_ops_s`` keeps pointers to the implementation of each operat
140139
FAR uint32_t *maxtimeout);
141140
};
142141
143-
144-
145142
Since ``ioctl`` system calls expect a file descriptor, before using these commands, it's necessary to open the timer device special file in order to get a file descriptor. The following snippet demonstrates how to do so:
146143

147144
.. code-block:: c
@@ -296,7 +293,6 @@ This command may be used like so:
296293
return EXIT_FAILURE;
297294
}
298295
299-
300296
.. c:macro:: TCIOC_MAXTIMEOUT
301297
302298
The ``TCIOC_MAXTIMEOUT`` command calls the ``maxtimeout`` operation, which is described below.
@@ -328,6 +324,5 @@ This command may be used like so:
328324
329325
printf("Maximum supported timeout: %" PRIu32 "\n", max_timeout);
330326
331-
332327
Those snippets were taken from the Example which provides a great resource to demonstrate how to use those ``ioctl`` commands.
333328

Documentation/components/drivers/character/watchdog.rst

-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ The previously selected example will basically do the following:
8282
* Ping (feed the dog) during the ``pingtime`` with a delay of ``pingdelay`` and print out the wdt status in case debug was enabled.
8383
* Enter into an endless loop without pinging. It will cause the watchdog timer to reset the chip on timeout, i.e., after timer expiration.
8484

85-
8685
The `example code <https://github.com/apache/incubator-nuttx-apps/blob/master/examples/watchdog/watchdog_main.c>`_ may be explored, its path is at ``/examples/watchdog/watchdog_main.c`` in the apps' repository.
8786

8887
In NuttX, the watchdog timer driver is a character driver and when a chip supports multiple watchdog timers, each one is accessible through its respective special file in ``/dev`` directory. Each watchdog timer is registered using a unique numeric identifier (i.e. ``/dev/watchdog0``, ``/dev/watchdog1``, ...).
@@ -108,7 +107,6 @@ The first necessary thing to be done in order to use the watchdog timer driver i
108107
109108
#include <nuttx/timers/watchdog.h>
110109
111-
112110
At an application level, the watchdog timer functionalities may be accessed through ``ioctl`` systems calls. These ``ioctl`` commands internally call lower-half layer operations and the parameters are forwarded to these operations through the ``ioctl`` system call. The example provides a great resource to demonstrate how to use those ``ioctl`` commands. The available ``ioctl`` commands are:
113111

114112
.. c:macro:: WDIOC_START

Documentation/components/drivers/special/syslog.rst

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
SYSLOG
33
======
44

5-
65
SYSLOG Interfaces
76
=================
87

Documentation/components/nxgraphics/appendix.rst

-1
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,6 @@ CONFIG_NXFONT_SANS23X27 for examaples:
440440
NULL
441441
};
442442
443-
444443
NX Test Coverage
445444
================
446445

Documentation/components/nxgraphics/nx.rst

-1
Original file line numberDiff line numberDiff line change
@@ -716,4 +716,3 @@ Move a rectangular region within the window.
716716
717717
.. _nx-tool-kit-nxtk-1:
718718
719-

Documentation/components/nxgraphics/nxcursor.rst

-1
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,3 @@ NX Cursor Support (``NXCURSOR``)
4747
4848
:return: OK on success; ERROR on failure with errno set appropriately.
4949
50-

Documentation/components/nxgraphics/nxfonts.rst

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ NXFONTS types
3333
FAR const uint8_t *bitmap; /* Pointer to the character bitmap */
3434
};
3535
36-
3736
.. c:struct:: nx_fontset_s
3837
3938
This structure describes one contiguous grouping of glyphs that can be

Documentation/components/nxgraphics/nxgl.rst

-2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ NXGL Types
117117
FAR const struct nxgl_point_s *v1, \
118118
FAR const struct nxgl_point_s *v2);
119119
120-
121120
Add two 2x1 vectors and save the result to a third.
122121
123122
.. c:function:: void nxgl_vectsubtract(FAR struct nxgl_point_s *dest, \
@@ -247,7 +246,6 @@ NXGL Types
247246
.. c:function:: void nxgl_circletraps(FAR const struct nxgl_point_s *center, nxgl_coord_t radius, \
248247
FAR struct nxgl_trapezoid_s *circle);
249248
250-
251249
Given a description of a a circle, return 8 trapezoids
252250
that can be used to fill the circle by
253251
:c:func:`nx_fillcircle` and other interfaces.

Documentation/components/nxgraphics/nxtk.rst

-6
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,6 @@ these sub-windows to be managed more-or-less independently:
436436
FAR const struct nx_callback_s *cb, \
437437
FAR void *arg);
438438
439-
440439
Create a tool bar at the top of the specified framed
441440
window.
442441
@@ -468,7 +467,6 @@ these sub-windows to be managed more-or-less independently:
468467
.. c:function:: int nxtk_filltoolbar(NXTKWINDOW hfwnd, FAR const struct nxgl_rect_s *rect, \
469468
nxgl_mxpixel_t color[CONFIG_NX_NPLANES]);
470469
471-
472470
Fill the specified rectangle in the toolbar sub-window
473471
with the specified color.
474472
@@ -487,7 +485,6 @@ these sub-windows to be managed more-or-less independently:
487485
unsigned int plane, FAR uint8_t *dest, \
488486
unsigned int deststride);
489487
490-
491488
Get the raw contents of graphic memory within a
492489
rectangular region. NOTE: Since raw graphic memory is returned, the
493490
returned memory content may be the memory of windows above this one and
@@ -530,7 +527,6 @@ these sub-windows to be managed more-or-less independently:
530527
nxgl_coord_t width, nxgl_mxpixel_t color[CONFIG_NX_NPLANES], \
531528
uint8_t caps);
532529
533-
534530
Fill the specified line in the toolbar sub-window with
535531
the specified color. This is simply a wrapper that uses
536532
``nxgl_splitline()`` to break the line into trapezoids and then calls
@@ -558,7 +554,6 @@ these sub-windows to be managed more-or-less independently:
558554
#define NX_LINECAP_PT2 0x02 /* Line cap on pt2 on of the vector only */
559555
#define NX_LINECAP_BOTH 0x03 /* Line cap on both ends of the vector only */
560556
561-
562557
:return: ``OK`` on success; ``ERROR`` on failure with
563558
``errno`` set appropriately
564559
@@ -650,4 +645,3 @@ these sub-windows to be managed more-or-less independently:
650645
651646
.. _nx-fonts-support-nxfonts-1:
652647
653-

Documentation/components/nxgraphics/sample.rst

-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,3 @@ Linux/Cygwin-based NuttX simulator. Instructions are provided for
2727
building that simulation are provided in `Appendix C <#testcoverage>`__
2828
of this document.
2929

30-

Documentation/components/power.rst

-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,6 @@ All PM interfaces are declared in the file ``include/nuttx/power/pm.h``.
186186
Callbacks
187187
=========
188188
189-
190189
.. c:struct:: pm_callback_s
191190
192191
This struct includes the pointers to the driver

Documentation/contributing/coding_style.rst

-4
Original file line numberDiff line numberDiff line change
@@ -920,7 +920,6 @@ conditional compilation does *not* cause any change to the indentation.
920920
...
921921
#endif /* __INCLUDE_SOMEHEADER_H */
922922
923-
924923
Parentheses
925924
===========
926925

@@ -1146,7 +1145,6 @@ Parameters and Local Variables
11461145
return ret;
11471146
}
11481147
1149-
11501148
**NOTE:** You will see the local variable named ``ret`` is frequently
11511149
used in the code base for the name of a local variable whose value will
11521150
be returned or to received the returned value from a called function.
@@ -2392,7 +2390,6 @@ Appendix
23922390
C Source File Structure
23932391
=======================
23942392

2395-
23962393
.. code-block:: c
23972394
23982395
/****************************************************************************
@@ -2430,7 +2427,6 @@ C Source File Structure
24302427
24312428
*All C pre-processor macros are defined here.*
24322429

2433-
24342430
.. code-block:: c
24352431
24362432
/****************************************************************************

Documentation/contributing/making-changes.rst

-4
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,13 @@ Here's how to do it:
2828
If you don't have a `GitHub <https://www.github.com>`_ account, it's free to
2929
sign up.
3030

31-
3231
#. Fork the Projects
3332

3433
Visit both these links and hit the Fork button in the upper right of the page:
3534

3635
* `NuttX <https://github.com/apache/incubator-nuttx/>`_
3736
* `NuttX Apps <https://github.com/apache/incubator-nuttx-apps/>`_
3837

39-
4038
#. Clone the Repositories
4139

4240
On the GitHub web page for your forked ``incubator-nuttx`` project, copy the clone url – get it by hitting the
@@ -66,7 +64,6 @@ Here's how to do it:
6664
$ git checkout -b test/my-new-branch
6765
$ git push
6866
69-
7067
Git Workflow With an Upstream Repository
7168
----------------------------------------
7269

@@ -162,7 +159,6 @@ maybe doing that several times. Then when everything works, I get my branch read
162159
$ git commit my-file.c
163160
$ git push
164161
165-
166162
Submitting Your Changes to NuttX
167163
--------------------------------
168164

Documentation/guides/drivers.rst

-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ modification.
143143
200aaa90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
144144
200aaaa0: 0000 0000 0000 0000 ........
145145
146-
147146
NuttX Drivers as a Reference
148147
----------------------------
149148

Documentation/guides/nfs.rst

-2
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,6 @@ called ``/export``.
190190
191191
# sudo mkdir /export
192192
193-
194193
It is important that ``/export`` directory allow access to everyone (777
195194
permissions) as we will be accessing the NFS share from the client with
196195
no authentication.
@@ -280,5 +279,4 @@ And also we can verify if NFS is running in the system with:
280279
100021 3 tcp 1629 nlockmgr
281280
100021 4 tcp 1629 nlockmgr
282281
283-
284282
Now your NFS sever is sharing ``/export`` directory to be accessed.

Documentation/guides/tasktraceuser.rst

-8
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ The following configurations must be enabled.
3030
- ``CONFIG_SYSTEM_TRACE`` : Enables "``trace``" command
3131
- ``CONFIG_SYSTEM_SYSTEM`` : Enables "``system``" command (required by :ref:`trace_cmd`)
3232

33-
3433
The following configurations are configurable parameters for trace.
3534

3635
- ``CONFIG_SCHED_INSTRUMENTATION_FILTER_DEFAULT_MODE``
@@ -81,7 +80,6 @@ Getting the trace
8180

8281
Trace is started by the following command.
8382

84-
8583
.. code-block::
8684
8785
nsh> trace start
@@ -98,7 +96,6 @@ If you want to get the trace while executing some command, the following command
9896
9997
nsh> trace cmd <command> [<args>...]
10098
101-
10299
Displaying the trace result
103100
^^^^^^^^^^^^^^^^^^^^^^^^^^^
104101

@@ -130,7 +127,6 @@ This will get the trace results like the following:
130127
<noname>-0 [0] 7.650000000: irq_handler_entry: irq=15
131128
:
132129
133-
134130
By using the logging function of your terminal software, the trace result can be saved into the host environment and it can be used as the input for `"Trace Compass" <https://www.eclipse.org/tracecompass/>`_.
135131

136132
If the target has a storage, the trace result can be stored into the file by using the following command.
@@ -140,12 +136,10 @@ It also can be used as the input for "Trace Compass" by transferring the file in
140136
141137
nsh> trace dump <file name>
142138
143-
144139
To display the trace result by `"Trace Compass" <https://www.eclipse.org/tracecompass/>`_, choose ``File`` -> ``Open Trace`` menu to specify the trace data file name.
145140

146141
.. image:: image/trace-compass-screenshot.png
147142

148-
149143
Trace command description
150144
=========================
151145

@@ -197,7 +191,6 @@ To use this command, ``CONFIG_SYSTEM_SYSTEM`` needs to be enabled.
197191
198192
trace cmd [-c] <command> [<args>...]
199193
200-
201194
- ``-c`` : Continue the previous trace.
202195
The trace data is not cleared before starting new trace.
203196

@@ -231,7 +224,6 @@ If the task trace is running, it is stopped before the output.
231224
- ``<filename>`` : Specify the filename to save the trace result.
232225
If not specified, the trace result is displayed to console.
233226

234-
235227
.. _trace_mode:
236228

237229
trace mode

Documentation/guides/usbtrace.rst

-3
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,6 @@ Application Configuration -> NSH LIbrary .
188188
. with the usbmon_start and usbmon_stop commands from the NSH console.
189189
=========================================== ===================================================
190190

191-
192-
193191
=============================================== ============================================
194192
Application Configuration -> System NSH Add-Ons .
195193
``CONFIG_USBMONITOR=y`` Enable the USB monitor daemon
@@ -210,7 +208,6 @@ Application Configuration -> System NSH Add-Ons .
210208
``CONFIG_USBMONITOR_TRACEINTERRUPTS=y`` .
211209
=============================================== ============================================
212210

213-
214211
NOTE: If USB debug output is also enabled, both outputs will appear on
215212
the serial console. However, the debug output will be asynchronous with
216213
the trace output and, hence, difficult to interpret.

0 commit comments

Comments
 (0)