platform-ststm32
platform-ststm32 copied to clipboard
ST STM32: development platform for PlatformIO
Hello, Starting with Zephyr version 2.7, they added the SeeedStudio lora-e5 board. https://docs.zephyrproject.org/latest/boards/arm/lora_e5_dev_board/doc/lora_e5_dev_board.html https://docs.zephyrproject.org/latest/releases/release-notes-2.7.html Can you add it to PlatformIO ? Thanks
This PR adds support for the OpenCR board. It has been tested as part of an integration work of Zenoh technologies into OpenCR (you can find details here: https://zenoh.io/blog/2022-02-08-dragonbot/ )....
The STM32G431 microcontroller on this board is supported by libopencm3 so I added it to the list of frameworks in the board file
Per https://community.platformio.org/t/tone-different-behaviour-between-debug-and-release/25518. The current version of the `framework-arduinoststm32-maple` package contains a bug causing very simple code like ```cpp tone(PB9, 500); ``` to not work. However, PlatformIO's package version already lags...
The OpenCM 9.04 from Robotis is a servo controller based on the Cortex M3 and the official reference board for controlling Dynamixel servos. An Arduino board definition already exists: https://raw.githubusercontent.com/ROBOTIS-GIT/OpenCM9.04/master/arduino/opencm_release/package_opencm9.04_index.json...
When using a minimal `platformio.ini` of ```ini [env:nucleo_l476rg] platform = ststm32 board = nucleo_l476rg framework = stm32cube ``` with `src/main.c` of ```c #include "stm32l4xx_hal.h" #include int main(void) { HAL_Init(); float32_t...
Per https://community.platformio.org/t/where-are-all-the-new-stm32-boards/23304. Platform-STSTM32 should support all the boards which are selectible with that core in the Arduino IDE, too. Examples: * Generic WL54CCUx (and lots of other WL series) *...
Hello, I created a STM32 Nucleo based project based. ``` pio project init --board nucleo_g474re --project-option "framework=zephyr" ``` If I try to run `pio run -t menuconfig` it ends in...
I have been using PlatformIO for most of my projects for years, I want to request support for STM32 processor (STM32MP157A-DK1)
Hello, Is it possible to add support for the STM32F030C8 device please? I see it is now supported in the STM32 Arduino core, but has not been added to PlatformIO....