• Incorrect reading of IDR of GPIOA
    If i am using a button conntected to pin 1 of GPIOA .. GPIOA_ENABLE_CLOCK(); GPIOA->MODER |=PIN_INPUT; GPIOA->PUPD |=NO_PULLUP_NO_PULL_DOWN; GPIOA->ODR |=(1 << 1); //this for external pull up resistor...
  • Incorrect reading of IDR of GPIOA
    If i am using a button conntected to pin 1 of GPIOA .. GPIOA_ENABLE_CLOCK(); GPIOA->MODER |=PIN_INPUT; GPIOA->PUPD |=NO_PULLUP_NO_PULL_DOWN; GPIOA->ODR |=(1 << 1); //this for external pull up resistor...
  • Debug with Logic Analyzer to show GPIOB bit signal
    hi, I am trying to use the logic analyzer to capture the output pin on my MCBSTM32 board. I have try to add "GPIOB" into Current Logic Analyzer Signals under Setup Logic Analyzer Menu, but couldn't seems...
  • Debug with Logic Analyzer to show GPIOB bit signal
    hi, I am trying to use the logic analyzer to capture the output pin on my MCBSTM32 board. I have try to add "GPIOB" into Current Logic Analyzer Signals under Setup Logic Analyzer Menu, but couldn't seems...
  • How many TCP frames can be unacknowledged at the same time?
    TCPNet is supposed to use buffering which allows for faster data transmission rates. I see however that in some example programs/documentation, the handler of the TCP_STATE_CONNECT state in the send...