STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

I am trying to send 20486 bytes of data through UART at 2 Mbps. However, I am not able to send full data at this baud rate. Baudrate of 115200 works fine for sending this data however at 2000000 baudrate, it is sending only partial data?

Below is the code for sending data at 2 Mbps baudrate. #include "stm32f4xx.h" #include "stm32f4xx_hal.h" #include "stm32f446xx.h" #include "stm32f4xx_hal_cortex.h" #include "stm32f4xx_hal_tim.h" #include "main.h" #include <string.h> #include <stdint....

AIsla.1 by Associate II
  • 1373 Views
  • 10 replies
  • 0 kudos

Nucleo-F103RB and Adafruit C1188 SPI doesn't work

Hi,I have small problem with connecting external sensor to my F103RB NUCLEO board. Im trying to connect Adafruit CAP1188 module through SPI normal mode. I send example messages and dont seem to get the right answer(I get 0). I just want to check if e...

MPasz.2 by Associate
  • 417 Views
  • 2 replies
  • 0 kudos

Working with WIFI module.

I work with WIFI module on B-L475E-IOT01A. I want to configure the module as a server and to connect to it with a client (say a phone).Looking at an exampleint wifi_server(void) { bool StopServer = false;   LOG(("\nRunning HTML Server test\n")); ...

when trying to connect with the serial port this is the message I got and the uart connection is completely lost and is there any possibility to reestablish the connection?

11:17:48:304 : Serial Port COM8 is successfully opened.11:17:48:304 : Port configuration: parity = even, baudrate = 9600, data-bit = 8, stop-bit = 1.0, flow-control = off11:17:48:304 : No Init bits value is : 0 11:17:48:304 : Sending init command: 11...

Nmv1608 by Associate II
  • 522 Views
  • 4 replies
  • 0 kudos

Connect Li-Ion battery to VBAT on STM32L4S5

Hello,In my system I'm using one Li-Ion battery and there is no possibility to add another battery to the system. So just one Li-Ion. I was planning to use the Li-Ion battery until a voltage of around 3.0V. Then I would disable the LDO which is used ...

Resolved! Adding a LF to a string of unkown length

Hello Everybody,I am wondering if this is good code when using an embedded system or if I should avoid adding a LF to an unkown string like I do it here, since this could overwerite other data in the following address:void USART_transmit_message(vola...