arduino-STM32L4
arduino-STM32L4 copied to clipboard
Am I correct, guessing from [this file](https://github.com/GrumpyOldPizza/arduino-STM32L4/blob/ac659033eadd50cfe001ba1590a1362b2d87bb76/system/STM32L4xx/Source/stm32l4_uart.c#L657) that the maximum supported baud rate is 921600?
Arduino: 1.8.19 (Windows 10), Board: "NUCLEO-L432KC, 80 MHz, Smallest Code" Sketch uses 116112 bytes (47%) of program storage space. Maximum is 245760 bytes. Open On-Chip Debugger 0.10.0-dev-00272-gf17dc4a (2016-10-10-09:38) Licensed under...
Hello All, I am trying to add a new variant for STM32L431CB, based on this guide https://www.instructables.com/Arduino-IDE-Creating-Custom-Boards/ but still failed. Is there any hint or web-link to add a new...
Any chance this will be added to Platformio? I also made a request via https://github.com/platformio/platform-ststm32/issues/28
@GrumpyOldPizza, I'm using a dragonfly like board designed by Kris and we used PA15 as output to enable a LDO via an enable pin. We have placed a pull down...
So it seems that calls to the DAC take quite a bit of time so I would like to implement DMA transfers. I tried my hand to use your DMA...
There seems to be a problem with calling pinMode multiple times and using analogWrite. The following code will fail for me: ```c++ static const int MOSFET = 9; void setup()...
to go ack to -> to go back to.
In order to conform with external libraries and also with the parent class Stream
Hi, I'm trying to set up a Butterfly to act as an I2C slave device. It receives data just fine but trying to send data back in the request callback...