mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
doc: fix whitespaces
This commit is contained in:
parent
516aca6b18
commit
1ed6f84992
@ -3,7 +3,7 @@ include $(RIOTBOARD)/arduino-atmega-common/Makefile.dep
|
||||
|
||||
INCLUDES += -I$(RIOTBOARD)/arduino-atmega-common/include
|
||||
|
||||
# refine serial port information
|
||||
# refine serial port information
|
||||
export BAUD ?= 9600
|
||||
include $(RIOTMAKE)/tools/serial.inc.mk
|
||||
|
||||
|
@ -247,7 +247,7 @@ typedef enum {
|
||||
ADC_RES_14BIT = (0xc00), /**< not supported by hardware */
|
||||
ADC_RES_16BIT = (0xd00), /**< not supported by hardware */
|
||||
} adc_res_t;
|
||||
/** @} */
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @brief ADC configuration wrapper
|
||||
|
@ -9,7 +9,7 @@
|
||||
* @ingroup cpu_kinetis_common
|
||||
* @brief ADC driver
|
||||
*
|
||||
* ### ADC configuration example (for periph_conf.h) ###
|
||||
* ### ADC configuration example (for periph_conf.h) ###
|
||||
*
|
||||
* static const adc_conf_t adc_config[] = {
|
||||
* { .dev = ADC0, .pin = GPIO_UNDEF , .chan = 0 }, // ADC0_DP0
|
||||
@ -47,7 +47,7 @@
|
||||
* @ingroup cpu_kinetis_common
|
||||
* @brief I2C driver
|
||||
*
|
||||
* ### I2C configuration example (for periph_conf.h) ###
|
||||
* ### I2C configuration example (for periph_conf.h) ###
|
||||
*
|
||||
* #define I2C_NUMOF (1U)
|
||||
* #define I2C_0_EN 1
|
||||
@ -85,7 +85,7 @@
|
||||
* @ingroup cpu_kinetis_common
|
||||
* @brief PWM driver
|
||||
*
|
||||
* ### PWM configuration example (for periph_conf.h) ###
|
||||
* ### PWM configuration example (for periph_conf.h) ###
|
||||
*
|
||||
* #define PWM_NUMOF (1U)
|
||||
* #define PWM_0_EN 1
|
||||
@ -118,7 +118,7 @@
|
||||
* looks random. Reference Manual recommends to use the RNGA as entropy
|
||||
* source.
|
||||
*
|
||||
* ### RNGA configuration example (for periph_conf.h) ###
|
||||
* ### RNGA configuration example (for periph_conf.h) ###
|
||||
*
|
||||
* #define RANDOM_NUMOF (1U)
|
||||
* #define KINETIS_RNGA RNG
|
||||
@ -134,7 +134,7 @@
|
||||
* looks random. Reference Manual recommends to use the RNGB as entropy
|
||||
* source.
|
||||
*
|
||||
* ### RNGB configuration example (for periph_conf.h) ###
|
||||
* ### RNGB configuration example (for periph_conf.h) ###
|
||||
*
|
||||
* #define RANDOM_NUMOF (1U)
|
||||
* #define KINETIS_RNGB RNG
|
||||
@ -155,7 +155,7 @@
|
||||
* The driver supports alarm, it is stored in the
|
||||
* Time Alarm Registers (TAR) and the unit is seconds.
|
||||
*
|
||||
* ### RTC configuration example (for periph_conf.h) ###
|
||||
* ### RTC configuration example (for periph_conf.h) ###
|
||||
*
|
||||
* #define RTC_NUMOF (1U)
|
||||
* #define RTC_DEV RTC
|
||||
@ -200,7 +200,7 @@
|
||||
* extra delays in the transfer because of the additional overhead
|
||||
* of calling gpio_set/clear at every transfer.
|
||||
*
|
||||
* ### SPI configuration example (for periph_conf.h): ###
|
||||
* ### SPI configuration example (for periph_conf.h): ###
|
||||
*
|
||||
* static const uint32_t spi_clk_config[] = {
|
||||
* // Use cpu/kinetis_common/dist/calc_spi_scalers to
|
||||
@ -260,7 +260,7 @@
|
||||
* caused by mixing the clock domains of the bus clock used by the
|
||||
* CPU and the 32kHz reference clock for the LPTMR counter.
|
||||
*
|
||||
* ### Timer configuration example (for periph_conf.h) ###
|
||||
* ### Timer configuration example (for periph_conf.h) ###
|
||||
*
|
||||
* #define PIT_NUMOF (2U)
|
||||
* #define PIT_CONFIG { \
|
||||
@ -299,7 +299,7 @@
|
||||
* using the BRFA field in the UART C4 register.
|
||||
* Currently, only the base TX/RX functionality is available.
|
||||
*
|
||||
* ### UART configuration example (for periph_conf.h) ###
|
||||
* ### UART configuration example (for periph_conf.h) ###
|
||||
*
|
||||
* static const uart_conf_t uart_config[] = {
|
||||
* {
|
||||
|
@ -76,7 +76,7 @@ struct thread_data {
|
||||
*/
|
||||
struct thread_data_deleter {
|
||||
/**
|
||||
* @brief Called by the deleter of a thread object to manage the lifetime of
|
||||
* @brief Called by the deleter of a thread object to manage the lifetime of
|
||||
* the thread internal management data.
|
||||
*/
|
||||
void operator()(thread_data* ptr) {
|
||||
|
@ -44,7 +44,7 @@ int pthread_mutex_init(pthread_mutex_t *mutex, const pthread_mutexattr_t *mutexa
|
||||
/**
|
||||
* @brief Destroy a mutex.
|
||||
* @details This is currently a no-op.
|
||||
* Destroying a mutex locked is undefined behavior.
|
||||
* Destroying a mutex locked is undefined behavior.
|
||||
* @param[in,out] mutex Datum to destroy.
|
||||
* @returns 0, this invocation is a no-op that cannot fail.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user