User Activity

Hi I use UART very rarely and I would like to disable gpio:void Disable_Not_Used_Pins(void) { /* Disable UART pins*/ GPIO_InitTypeDef GPIO_InitStruct = {0}; GPIO_InitStruct.Pin = GPIO_PIN_2|GPIO_PIN_3; GPIO_InitStruct.Mode = GPIO_MODE_ANALOG; GP...
Hello, I have problem with entering to the stop mode againHere is my function to configure stop mode, used once before main loop, and it's ok after that MCU goes to stop mode and power consumption is low.void EnterLowPowerMode(void) { //used just onc...
I would like to advise you, I create software for the STM32L151C8 microcontroller that will control the LCD segment display via the I2C PCF85176 driverDesign:- battery powered- configurable by the attached bluetooth module and keeping configuration v...