User Activity

i am using STEVAL-IDB007V1M and BlueNRG-1 Navigator v3.1.0 but when i flash from Navigator examples it's not working , could you please help me?
Hi,I have configured MCU in Sleep Mode, I have Configured SPI,UART and Some GPIO. and also configured Interrupt RTC. I have Wrote entering Sleep mode like,main(){  MX_GPIO_Init(); MX_LPUART1_UART_Init(); MX_SPI1_Init(); while(1) { Disable_Pheripheral...
Hi,I have configured ADC like  ADC_ChannelConfTypeDef sConfig;  /**Configure the global features of the ADC (Clock, Resolution, Data Alignment and number of conversion)   */ hadc.Instance = ADC1; hadc.Init.OversamplingMode = DISABLE; hadc.Init.ClockP...
I have configured LPUART with 9600 baud rate and enable receiver interrupt with MCU 65Khz low power mode and my uart handler likevoid LPUART1_IRQHandler(void){ uint32_t isrflags  = READ_REG(hlpuart1.Instance->ISR); uint32_t cr1its   = READ_REG(hlpuar...
Hi,I am using LPUART for sending data to the GSM. I wrote own uart transmit driver without timeout, like void LPUART1_Send_Data(uint8_t *string){ while(*string) { if((LPUART1->ISR & USART_ISR_TC)==USART_ISR_TC) { LPUART1->TDR=*string; ...