text re-formatting

This commit is contained in:
stnolting 2020-07-07 22:22:10 +02:00
parent 4d3ed4c26a
commit a3aaca62cc
5 changed files with 13 additions and 13 deletions

View file

@ -384,7 +384,7 @@ enum NEORV32_UART_DATA_enum {
/**********************************************************************//**
* @name IO Device: Serial Peripheral Interface Master (SPI)
* @name IO Device: Serial Peripheral Interface Controller (SPI)
**************************************************************************/
/**@{*/
/** SPI control register (r/w) */
@ -420,7 +420,7 @@ enum NEORV32_SPI_CT_enum {
/**********************************************************************//**
* @name IO Device: Two-Wire Interface Master (TWI)
* @name IO Device: Two-Wire Interface Controller (TWI)
**************************************************************************/
/**@{*/
/** TWI control register (r/w) */
@ -437,7 +437,7 @@ enum NEORV32_TWI_CT_enum {
TWI_CT_PRSC0 = 4, /**< TWI control register(4) (r/w): Clock prescaler select bit 0 */
TWI_CT_PRSC1 = 5, /**< TWI control register(5) (r/w): Clock prescaler select bit 1 */
TWI_CT_PRSC2 = 6, /**< TWI control register(6) (r/w): Clock prescaler select bit 2 */
TWI_CT_MACK = 7, /**< TWI control register(7) (r/w): Generate master ACK for each transmission */
TWI_CT_MACK = 7, /**< TWI control register(7) (r/w): Generate controller ACK for each transmission */
TWI_CT_ACK = 30, /**< TWI control register(30) (r/-): ACK received when set */
TWI_CT_BUSY = 31 /**< TWI control register(31) (r/-): Transfer in progress, busy flag */

View file

@ -1,5 +1,5 @@
// #################################################################################################
// # << NEORV32: neorv32_spi.h - Serial Peripheral Interface Master (SPI) HW Driver >> #
// # << NEORV32: neorv32_spi.h - Serial Peripheral Interface Controller (SPI) HW Driver >> #
// # ********************************************************************************************* #
// # BSD 3-Clause License #
// # #
@ -36,7 +36,7 @@
/**********************************************************************//**
* @file neorv32_spi.h
* @author Stephan Nolting
* @brief Serial peripheral interface master (SPI) HW driver header file.
* @brief Serial peripheral interface controller (SPI) HW driver header file.
*
* @note These functions should only be used if the SPI unit was synthesized (IO_SPI_USE = true).
**************************************************************************/

View file

@ -1,5 +1,5 @@
// #################################################################################################
// # << NEORV32: neorv32_twi.h - Two-Wire Interface Master (TWI) HW Driver >> #
// # << NEORV32: neorv32_twi.h - Two-Wire Interface Controller (TWI) HW Driver >> #
// # ********************************************************************************************* #
// # BSD 3-Clause License #
// # #
@ -36,7 +36,7 @@
/**********************************************************************//**
* @file neorv32_twi.h
* @author Stephan Nolting
* @brief Two-Wire Interface Master (TWI) HW driver header file.
* @brief Two-Wire Interface Controller (TWI) HW driver header file.
*
* @note These functions should only be used if the TWI unit was synthesized (IO_TWI_USE = true).
**************************************************************************/

View file

@ -1,5 +1,5 @@
// #################################################################################################
// # << NEORV32: neorv32_spi.c - Serial Peripheral Interface Master (SPI) HW Driver >> #
// # << NEORV32: neorv32_spi.c - Serial Peripheral Interface Controller (SPI) HW Driver >> #
// # ********************************************************************************************* #
// # BSD 3-Clause License #
// # #
@ -36,7 +36,7 @@
/**********************************************************************//**
* @file neorv32_spi.c
* @author Stephan Nolting
* @brief Serial peripheral interface master (SPI) HW driver source file.
* @brief Serial peripheral interface controller (SPI) HW driver source file.
*
* @note These functions should only be used if the SPI unit was synthesized (IO_SPI_USE = true).
**************************************************************************/

View file

@ -1,5 +1,5 @@
// #################################################################################################
// # << NEORV32: neorv32_twi.c - Two-Wire Interface Master (TWI) HW Driver >> #
// # << NEORV32: neorv32_twi.c - Two-Wire Interface Controller (TWI) HW Driver >> #
// # ********************************************************************************************* #
// # BSD 3-Clause License #
// # #
@ -36,7 +36,7 @@
/**********************************************************************//**
* @file neorv32_twi.c
* @author Stephan Nolting
* @brief Two-Wire Interface Master (TWI) HW driver source file.
* @brief Two-Wire Interface Controller (TWI) HW driver source file.
*
* @note These functions should only be used if the TWI unit was synthesized (IO_TWI_USE = true).
**************************************************************************/
@ -94,7 +94,7 @@ void neorv32_twi_disable(void) {
/**********************************************************************//**
* Activate sending ACKs by master (MACK).
* Activate sending ACKs by controller (MACK).
**************************************************************************/
void neorv32_twi_mack_enable(void) {
@ -103,7 +103,7 @@ void neorv32_twi_mack_enable(void) {
/**********************************************************************//**
* Deacivate sending ACKs by master (MACK).
* Deacivate sending ACKs by controller (MACK).
**************************************************************************/
void neorv32_twi_mack_disable(void) {