User Activity

I have a STM32L081KZT and I am using the LPUART.I want to create my own Interrupt (handler) based on UART_FLAG_TXE. So basically a function that gets called whenever the UART_FLAG_TXE bit is set.In the GCC compiler manual I have found this:void f () ...
Hello,I have a STM32 L081KZT and want to use the LPUART to send an Array of bytes, byte wise. For that, I use HAL_UART_Transmit_IT to send the first Byte of the Array and HAL_UART_TxCpltCallback to recursively write the rest of the Array with HAL_UAR...
Hello,I am using a STM32L081KZT6. My code sends a Message via LPUART every second and receives an input over the same LPUART from the user. The RTC is used for the timing with LSE. To save power, I go into sleep mode between sending and receiving. Th...
Hello,I have some Issues with LPUART1 on a STM32L081KZT. What I want to do is:- Receive Data of variable length via LPUART1 using the HAL_UART_Receive function.- Reading bytewise in a loop- Using an External Interrupt to start the receive.My Code loo...
Hello STM Community! This is my first Question in this Forum.I am using a STM32L081KZT and I need to save data, when the Power is unplugged. My setup is powered by USART and can only be turned off by unplugging the UART cable. In that case I need to ...