HAL + 0/2 examples
CodeScope will show references to SPI_FLAG_TXE from the following samples and libraries:
 
Symbols
loading...
Files
loading...

SPI_FLAG_TXE macro

Syntax

#define SPI_FLAG_TXE SPI_SR_TXE

Examples

SPI_FLAG_TXE is referenced by 2 libraries and example projects.

References

LocationText
stm32f4xx_hal_spi.h:315
#define SPI_FLAG_TXE SPI_SR_TXE /* SPI status flag: Tx buffer empty flag */
stm32f4xx_hal_spi.c:847
if (__HAL_SPI_GET_FLAG(hspi, SPI_FLAG_TXE))
stm32f4xx_hal_spi.c:877
if (__HAL_SPI_GET_FLAG(hspi, SPI_FLAG_TXE))
stm32f4xx_hal_spi.c:1239
if ((__HAL_SPI_GET_FLAG(hspi, SPI_FLAG_TXE)) && (hspi->TxXferCount > 0U) && (txallowed == 1U))
stm32f4xx_hal_spi.c:1293
if ((__HAL_SPI_GET_FLAG(hspi, SPI_FLAG_TXE)) && (hspi->TxXferCount > 0U) && (txallowed == 1U))
stm32f4xx_hal_spi.c:2106
} while ((hspi->Instance->SR & SPI_FLAG_TXE) == RESET);
stm32f4xx_hal_spi.c:2429
if ((SPI_CHECK_FLAG(itflag, SPI_FLAG_TXE) != RESET) && (SPI_CHECK_IT_SOURCE(itsource, SPI_IT_TXE) != RESET))
stm32f4xx_hal_spi.c:3053
} while ((hspi->Instance->SR & SPI_FLAG_TXE) == RESET);
stm32f4xx_hal_spi.c:3636
stm32f4xx_hal_spi.c:3700
} while ((hspi->Instance->SR & SPI_FLAG_TXE) == RESET);
stm32f4xx_hal_spi.c:3855
} while ((hspi->Instance->SR & SPI_FLAG_TXE) == RESET);
stm32f4xx_hal_spi.c:3913
} while ((hspi->Instance->SR & SPI_FLAG_TXE) == RESET);