DMA_Cmd(DMA1_Channel6, DISABLE);DMA_ClearFlag(DMA1_FLAG_TC6);/* EV8_2: Wait until BTF is set before programming the STOP */while((I2C1->SR1 &0x00004) !=0x000004);/* Program the STOP */I2C1->CR1 |= CR1_STOP_Set;/* Make sure that the STOP bit is cleared by Hardware */whil...