platform-ststm32 icon indicating copy to clipboard operation
platform-ststm32 copied to clipboard

ST STM32: development platform for PlatformIO

Results 201 platform-ststm32 issues
Sort by recently updated
recently updated
newest added

The use case as stated in https://community.platformio.org/t/how-use-a-same-chip-but-with-different-environment/18082 is pretty valid. Instead of the framework's variant folder, like https://github.com/stm32duino/Arduino_Core_STM32/tree/master/variants and `NUCLEO_L476RG`, some projects require a custom variant folder location and variant....

To reproduce: 1. Launch PlatformIO: Home in Visual Studio Code 2. Create a new project 3. Set Board to `ST Nucleo L476RG` 4. Set Framework to `mbed` or `Arduino` 5....

What kind of issue is this? - [x] **Feature Request**. Start by telling us what problem you’re trying to solve. Often a solution already exists! Don’t send pull requests to...

Hi. PlatformIO documentation [states](https://docs.platformio.org/en/latest/projectconf/section_env_platform.html#more-options) that any value of form "board_{PATH}" in platformio.ini will be merged into board manifest during build. However, this does not seem to be the case with...

The keyword `register` is deprecated in C++17. CMSIS and HAL libraries use it a lot in their headers. Therefore, when compiling a project with C++17 flags, the user gets a...

```cpp #include SoftwareSerial mySerial1(PA10,PA9); //(rx,tx) String d = “123123123”; void setup() { mySerial1.begin(9600); mySerial1.print(d); } void loop(){ } ``` **The serial port cannot output, but char [] can** platformio.ini ```ini...

help wanted

Feature Request - Could you please add STM32H755 (Nucelo-H755ZI-Q)

board request

Please add support for this board, link to url https://www.bigtree-tech.com/products/bigtreetech-octopus-v1-0-2.html

board request

Hi guys, I want to program stm32 through the serial port. I used a software on a forum and there is no problem. I think pio can also achieve this...

This is possibly more of a discussion than any kind of bug report.Also documenting this method for anyone searching for a similar solution in the future. Using the `upload_protocol =...