mirror of
https://github.com/apache/nuttx.git
synced 2026-09-25 09:15:09 +08:00
Remove @ and % tag from all comments
and format the multiple line comments Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
committed by
Alan Carvalho de Assis
parent
02aeb66644
commit
ca5a9c711a
@@ -538,17 +538,15 @@ extern "C"
|
||||
|
||||
#define CXD56_GNSS_IOCTL_SET_1PPS_OUTPUT 52
|
||||
|
||||
/**
|
||||
* Get the current 1PPS output setting
|
||||
/* Get the current 1PPS output setting
|
||||
*
|
||||
* @param[out] arg
|
||||
* param[out] arg
|
||||
* enable(1) or disable(0)
|
||||
*/
|
||||
|
||||
#define CXD56_GNSS_IOCTL_GET_1PPS_OUTPUT 53
|
||||
|
||||
/**
|
||||
* Get the firmware version
|
||||
/* Get the firmware version
|
||||
*
|
||||
* param[in] arg
|
||||
* string array of CXD56_GNSS_VERSION_MAXLEN
|
||||
@@ -556,8 +554,7 @@ extern "C"
|
||||
|
||||
#define CXD56_GNSS_IOCTL_GET_VERSION 54
|
||||
|
||||
/**
|
||||
* Sleep the firmware
|
||||
/* Sleep the firmware
|
||||
*
|
||||
* param[in] arg
|
||||
* CXD56_GNSS_SLEEP(0) or CXD56_GNSS_DEEPSLEEP(1)
|
||||
@@ -565,8 +562,7 @@ extern "C"
|
||||
|
||||
#define CXD56_GNSS_IOCTL_SLEEP 55
|
||||
|
||||
/**
|
||||
* Wake up the firmware
|
||||
/* Wake up the firmware
|
||||
*
|
||||
* param arg
|
||||
* Parameter is Unnecessary. Set Zero.
|
||||
@@ -574,8 +570,7 @@ extern "C"
|
||||
|
||||
#define CXD56_GNSS_IOCTL_WAKEUP 56
|
||||
|
||||
/**
|
||||
* Reset the firmware
|
||||
/* Reset the firmware
|
||||
*
|
||||
* param arg
|
||||
* Parameter is Unnecessary. Set Zero.
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
|
||||
#include <nuttx/config.h>
|
||||
|
||||
/* Number of bytes in @p x kibibytes/mebibytes/gibibytes */
|
||||
/* Number of bytes in x kibibytes/mebibytes/gibibytes */
|
||||
|
||||
#define KB(x) ((x) << 10)
|
||||
#define MB(x) (KB(x) << 10)
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -1693,8 +1693,7 @@ static int seq_scuirqhandler(int irq, void *context, void *arg)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Detect all FIFO underrun errors
|
||||
/* Detect all FIFO underrun errors
|
||||
* This error may not happened because check reading bytes at seq_read().
|
||||
* Thus, it is a program error when ERR1 detected.
|
||||
*/
|
||||
@@ -1888,8 +1887,7 @@ static int seq_fifoinit(struct seq_s *seq, int fifoid, uint16_t fsize)
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
/**
|
||||
* FIFO IDs (* is unavailable)
|
||||
/* FIFO IDs (* is unavailable)
|
||||
* D = Decimation FIFO
|
||||
* N = Normal FIFO
|
||||
*
|
||||
@@ -3165,8 +3163,7 @@ int seq_ioctl(struct seq_s *seq, int fifoid, int cmd, unsigned long arg)
|
||||
}
|
||||
break;
|
||||
|
||||
/**
|
||||
* Enable/disable sign conversion feature
|
||||
/* Enable/disable sign conversion feature
|
||||
* Arg: unsigned long, 0 = off, other = on
|
||||
*/
|
||||
|
||||
@@ -3176,8 +3173,7 @@ int seq_ioctl(struct seq_s *seq, int fifoid, int cmd, unsigned long arg)
|
||||
}
|
||||
break;
|
||||
|
||||
/**
|
||||
* Enable offset/gain adjustment preprocessing.
|
||||
/* Enable offset/gain adjustment preprocessing.
|
||||
* Arg: Pointer of adjust_xyz_t
|
||||
* If arg is null, just enable offset/gain (use current setting value).
|
||||
*/
|
||||
@@ -3201,8 +3197,7 @@ int seq_ioctl(struct seq_s *seq, int fifoid, int cmd, unsigned long arg)
|
||||
}
|
||||
break;
|
||||
|
||||
/**
|
||||
* Disable offset/gain adjustment preprocessing.
|
||||
/* Disable offset/gain adjustment preprocessing.
|
||||
* Arg: None
|
||||
*/
|
||||
|
||||
@@ -3212,8 +3207,7 @@ int seq_ioctl(struct seq_s *seq, int fifoid, int cmd, unsigned long arg)
|
||||
}
|
||||
break;
|
||||
|
||||
/**
|
||||
* Set IIR filter position and coefficiencies.
|
||||
/* Set IIR filter position and coefficiencies.
|
||||
* Arg: Pointer of struct math_filter_s
|
||||
*/
|
||||
|
||||
@@ -3239,8 +3233,7 @@ int seq_ioctl(struct seq_s *seq, int fifoid, int cmd, unsigned long arg)
|
||||
}
|
||||
break;
|
||||
|
||||
/**
|
||||
* Set event notifier
|
||||
/* Set event notifier
|
||||
* Arg: Pointer of struct scuev_notify_s
|
||||
*/
|
||||
|
||||
@@ -3266,8 +3259,7 @@ int seq_ioctl(struct seq_s *seq, int fifoid, int cmd, unsigned long arg)
|
||||
}
|
||||
break;
|
||||
|
||||
/**
|
||||
* Set number of elements per sample for mathfunc
|
||||
/* Set number of elements per sample for mathfunc
|
||||
* Arg: uint8_t
|
||||
*/
|
||||
|
||||
@@ -3277,8 +3269,7 @@ int seq_ioctl(struct seq_s *seq, int fifoid, int cmd, unsigned long arg)
|
||||
}
|
||||
break;
|
||||
|
||||
/**
|
||||
* Set decimation parameters
|
||||
/* Set decimation parameters
|
||||
* Arg: Pointer of struct decimation_s
|
||||
*/
|
||||
|
||||
@@ -3295,8 +3286,7 @@ int seq_ioctl(struct seq_s *seq, int fifoid, int cmd, unsigned long arg)
|
||||
break;
|
||||
}
|
||||
|
||||
/**
|
||||
* Now only save decimation parameters because decimation parameter
|
||||
/* Now only save decimation parameters because decimation parameter
|
||||
* cannot be set while sequencer running.
|
||||
*/
|
||||
|
||||
@@ -3306,8 +3296,7 @@ int seq_ioctl(struct seq_s *seq, int fifoid, int cmd, unsigned long arg)
|
||||
}
|
||||
break;
|
||||
|
||||
/**
|
||||
* Set FIFO watermark
|
||||
/* Set FIFO watermark
|
||||
* Arg: Pointer of struct scufifo_wm_s
|
||||
*/
|
||||
|
||||
@@ -3418,15 +3407,13 @@ void scu_initialize(void)
|
||||
|
||||
scufifo_initialize();
|
||||
|
||||
/**
|
||||
* If SCU clock has been already enabled, keep SCU running without loading
|
||||
/* If SCU clock has been already enabled, keep SCU running without loading
|
||||
* and reset of SCU firmware.
|
||||
*/
|
||||
|
||||
if (false == cxd56_scuseq_clock_is_enabled())
|
||||
{
|
||||
/**
|
||||
* Enable SCU clock. This process must do before loading firmware
|
||||
/* Enable SCU clock. This process must do before loading firmware
|
||||
* because SCU instruction RAM is not accessible.
|
||||
*/
|
||||
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
* freely, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software.@n
|
||||
* claim that you wrote the original software.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.@n
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*
|
||||
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
/****************************************************************************
|
||||
* arch/arm/src/lpc43xx/spifi/inc/spifilib_dev.h
|
||||
*
|
||||
* @note
|
||||
* Copyright(C) NXP Semiconductors, 2014
|
||||
* All rights reserved.
|
||||
*
|
||||
* @par
|
||||
* Software that is described herein is for illustrative purposes only
|
||||
* which provides customers with programming information regarding the
|
||||
* LPC products. This software is supplied "AS IS" without any warranties
|
||||
@@ -21,7 +19,6 @@
|
||||
* application will be suitable for the specified use without further testing
|
||||
* or modification.
|
||||
*
|
||||
* @par
|
||||
* Permission to use, copy, modify, and distribute this software and its
|
||||
* documentation is hereby granted, under NXP Semiconductors' and its
|
||||
* licensor's relevant copyrights in the software, without fee, provided that
|
||||
|
||||
@@ -49,4 +49,4 @@
|
||||
void nrf53_earlyserialinit(void);
|
||||
#endif
|
||||
|
||||
#endif /* __ARCH_ARM_SRC_NRF53_NRF53@_SERIAL_H */
|
||||
#endif /* __ARCH_ARM_SRC_NRF53_NRF53_SERIAL_H */
|
||||
|
||||
@@ -49,4 +49,4 @@
|
||||
void nrf91_earlyserialinit(void);
|
||||
#endif
|
||||
|
||||
#endif /* __ARCH_ARM_SRC_NRF91_NRF91@_SERIAL_H */
|
||||
#endif /* __ARCH_ARM_SRC_NRF91_NRF91_SERIAL_H */
|
||||
|
||||
@@ -19,14 +19,11 @@
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* @file error.h
|
||||
* @brief Global error definition
|
||||
* @version 0.0
|
||||
* @date 11. Feb. 2018
|
||||
* @author Eagle.Lao
|
||||
*
|
||||
*
|
||||
*
|
||||
* error.h
|
||||
* Global error definition
|
||||
* 0.0
|
||||
* 11. Feb. 2018
|
||||
* Eagle.Lao
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
|
||||
@@ -19,11 +19,11 @@
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* @file flash.h
|
||||
* @brief Contains all functions support for flash driver
|
||||
* @version 0.0
|
||||
* @date 27. Nov. 2017
|
||||
* @author qing.han
|
||||
* flash.h
|
||||
* Contains all functions support for flash driver
|
||||
* 0.0
|
||||
* 27. Nov. 2017
|
||||
* qing.han
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
|
||||
@@ -19,12 +19,10 @@
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* @file global_config.h
|
||||
* global_config.h
|
||||
*
|
||||
* @brief This file contains the definitions of index of
|
||||
|
||||
* global configuration which
|
||||
* will be configured in APP project.
|
||||
* This file contains the definitions of index of
|
||||
* global configuration which will be configured in APP project.
|
||||
*
|
||||
* $Rev: $
|
||||
*
|
||||
|
||||
@@ -19,11 +19,11 @@
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* @file gpio.h
|
||||
* @brief Contains all functions support for gpio and iomux driver
|
||||
* @version 0.0
|
||||
* @date 19. Oct. 2017
|
||||
* @author qing.han
|
||||
* gpio.h
|
||||
* Contains all functions support for gpio and iomux driver
|
||||
* 0.0
|
||||
* 19. Oct. 2017
|
||||
* qing.han
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __ARCH_ARM_SRC_PHY62XX_GPIO_H
|
||||
|
||||
@@ -20,9 +20,9 @@
|
||||
|
||||
/****************************************************************************
|
||||
*
|
||||
* @file jump_fucntion.h
|
||||
* jump_fucntion.h
|
||||
*
|
||||
* @brief This file contains the definitions of the macros and functions
|
||||
* This file contains the definitions of the macros and functions
|
||||
* that are architecture dependent. The implementation of those is
|
||||
* implemented in the appropriate architecture directory.
|
||||
*
|
||||
|
||||
@@ -19,11 +19,11 @@
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* @file log.h
|
||||
* @brief Contains all functions support for uart driver
|
||||
* @version 0.0
|
||||
* @date 31. Jan. 2018
|
||||
* @author eagle.han
|
||||
* log.h
|
||||
* Contains all functions support for uart driver
|
||||
* 0.0
|
||||
* 31. Jan. 2018
|
||||
* eagle.han
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef ENABLE_LOG_ROM
|
||||
|
||||
@@ -23,11 +23,11 @@
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* @file uart.h
|
||||
* @brief Contains all functions support for uart driver
|
||||
* @version 0.0
|
||||
* @date 19. Oct. 2017
|
||||
* @author qing.han
|
||||
* uart.h
|
||||
* Contains all functions support for uart driver
|
||||
* 0.0
|
||||
* 19. Oct. 2017
|
||||
* qing.han
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __ARCH_ARM_SRC_PHY62XX_UART_H
|
||||
|
||||
@@ -38,8 +38,7 @@
|
||||
* Private Types
|
||||
****************************************************************************/
|
||||
|
||||
/**
|
||||
* This structure provides the private representation of the "lower-half"
|
||||
/* This structure provides the private representation of the "lower-half"
|
||||
* driver state structure. This structure must be cast-compatible with the
|
||||
* well-known watchdog_lowerhalf_s structure.
|
||||
*/
|
||||
|
||||
@@ -542,9 +542,7 @@ struct mtd_dev_s *sam_nand_initialize(int cs)
|
||||
priv->cs = cs;
|
||||
priv->rb = GPIO_SMC_RB;
|
||||
|
||||
/* Initialize the NAND hardware for this CS */
|
||||
|
||||
/**
|
||||
/* Initialize the NAND hardware for this CS
|
||||
* Note: The initialization is shown for the reference purpose only, and
|
||||
* for other MCUs, refer to the Package and Pinout chapter of the
|
||||
* respective data sheet.
|
||||
|
||||
@@ -392,9 +392,7 @@ enum sam_hoststate_e
|
||||
USB_HOSTSTATE_CONFIGURED /* A valid configuration has been selected. */
|
||||
};
|
||||
|
||||
/**
|
||||
* @brief USB HCD pipe states
|
||||
*/
|
||||
/* USB HCD pipe states */
|
||||
|
||||
enum usb_h_pipe_state
|
||||
{
|
||||
|
||||
@@ -69,9 +69,7 @@
|
||||
#define WDT_CLK_8192CYCLE 8192
|
||||
#define WDT_CLK_16384CYCLE 16384
|
||||
|
||||
/**
|
||||
* \brief Macro is used to indicate the rate of second/millisecond
|
||||
*/
|
||||
/* Macro is used to indicate the rate of second/millisecond */
|
||||
|
||||
#define WDT_PERIOD_RATE 1000
|
||||
|
||||
@@ -79,8 +77,7 @@
|
||||
* Private Types
|
||||
****************************************************************************/
|
||||
|
||||
/**
|
||||
* This structure provides the private representation of the "lower-half"
|
||||
/* This structure provides the private representation of the "lower-half"
|
||||
* driver state structure. This structure must be cast-compatible with the
|
||||
* well-known watchdog_lowerhalf_s structure.
|
||||
*/
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
* Pre-processor Definitions
|
||||
****************************************************************************/
|
||||
|
||||
/* Number of bytes in @p x kibibytes/mebibytes/gibibytes */
|
||||
/* Number of bytes in x kibibytes/mebibytes/gibibytes */
|
||||
|
||||
#define KB(x) ((x) << 10)
|
||||
#define MB(x) (KB(x) << 10)
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
* Pre-processor Definitions
|
||||
****************************************************************************/
|
||||
|
||||
/* Number of bytes in @p x kibibytes/mebibytes/gibibytes */
|
||||
/* Number of bytes in x kibibytes/mebibytes/gibibytes */
|
||||
|
||||
#define KB(x) ((x) << 10)
|
||||
#define MB(x) (KB(x) << 10)
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
* Pre-processor Definitions
|
||||
****************************************************************************/
|
||||
|
||||
/* Number of bytes in @p x kibibytes/mebibytes/gibibytes */
|
||||
/* Number of bytes in x kibibytes/mebibytes/gibibytes */
|
||||
|
||||
#define KB(x) ((x) << 10)
|
||||
#define MB(x) (KB(x) << 10)
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user