• displaying the contents of the interrupt vector table, registers and flags
    Hi All, I am hoping someone can inform of how to go about displaying the contents of the interrupt vector table (IVT)on the stdout. I'm taking an introductory class in assembly language, and this is...
  • displaying the contents of the interrupt vector table, registers and flags
    Hi All, I am hoping someone can inform of how to go about displaying the contents of the interrupt vector table (IVT)on the stdout. I'm taking an introductory class in assembly language, and this is...
  • STM32F407 - Flag RXNE of SPI is clear when i read. Sometimes is stack in waiting the flag.
    Hi, i using SPI for communicating Transmiting and Receiving with STM32F407. My routine for transmit: void spi_transmit(uint8_t DataX) { //Envio while(!(SPI_TFT->SR & SPI_SR_TXE)); SPI_TFT->DR = DataX;...
  • STM32F407 - Flag RXNE of SPI is clear when i read. Sometimes is stack in waiting the flag.
    Hi, i using SPI for communicating Transmiting and Receiving with STM32F407. My routine for transmit: void spi_transmit(uint8_t DataX) { //Envio while(!(SPI_TFT->SR & SPI_SR_TXE)); SPI_TFT->DR = DataX;...
  • Displaying character.
    I am a beginner to C language... I have alreaady initialized the LCD in my code...How do i display a message("HELLO" eg.) to LCD? I want to use it in function void but i do not know where to start.....