Arduino_Core_STM32
Arduino_Core_STM32 copied to clipboard
STM32 core support for Arduino
**Summary** This PR implements SPI slave mode for the SPI library. There is an existing PR, #1612, but it is not actively developped and it uses HAL and LL functions...
**Describe the bug** The function `HardwareTimer::setOverflow()` allow to set the overflow value as a `uint32_t` an then set the value of the STM32 ARR Register to: $overflow - 1$ since...
> Looking good. There is one worry I have still - if this code is called from inside an ISR (or another context where interrupts are disabled) and Serial has...
In https://github.com/stm32duino/Arduino_Core_STM32/wiki/API : * PMW should be PWM.
* refactor(STM32CubeProgrammer): rework options Fixes #2292 This requires STM32Tools versions higher than 2.2.1. (https://github.com/stm32duino/Arduino_Tools/pull/97) * feat(usb): provide default vid/pid Provided id: - Default USB CDC for all series with USB...
**Desktop:** - OS: macOS 14.3.1 - Arduino IDE version: 2.3.2 - STM32 core version: 2.7.1 - Upload method: STM32 Cube Programmer (Serial) **Board:** - Name: STM32F4 based **Description:** STM32CubeProgrammer allows...
**Describe the bug** With generic blue pill STM32F103C8 boards from multiple vendors, Serial.read and Serial.available do not report characters received from the host. **Setup** Arduino IDE 2.3.2 STM32 support 2.7.1...
## Pull Request template Please, Make sure that your PR is not a duplicate. Search among the [Pull request](https://github.com/stm32duino/Arduino_Core_STM32/pulls) before creating one. IMPORTANT: Please review the [CONTRIBUTING.md](../CONTRIBUTING.md) file for detailed...
As the title, I noticed that sometimes the output buffer will be splited into two bulk packages. e.g. if I send [1, 2, 3, 4, 5, 6, 7] by using...