User Activity

Posted on February 11, 2016 at 14:54I am new to the CPAL i2c library. Please help me make a code using this library to receive data from another microcontroller. ARM is supposed to run in SLAVE mode at 100kbps.  
Posted on February 14, 2015 at 14:57Hi, the code for my interrupt handler is belowvoid SPI_IRQHandler(SPI_TypeDef * SPIx){ uint8_t SPIn = (SPIx == SPI1) ? 0 : ((SPIx == SPI2) ? 1 : 2); if(SPI_I2S_GetITStatus(SPIx, SPI_I2S_IT_RXNE) == SET) { if(_RxCo...