Skip to content

add support for WeAct "F411 8M HSE" variant and rename existing menu … - #3035

Merged
fpistm merged 1 commit into
stm32duino:mainfrom
lehjr:main
Aug 10, 2026
Merged

add support for WeAct "F411 8M HSE" variant and rename existing menu …#3035
fpistm merged 1 commit into
stm32duino:mainfrom
lehjr:main

Conversation

@lehjr

@lehjr lehjr commented Jul 25, 2026

Copy link
Copy Markdown
Contributor

…entry to avoid confusion

Pull Request template

Please, Make sure that your PR is not a duplicate.
Search among the Pull request before creating one.

IMPORTANT: Please review the CONTRIBUTING.md file for detailed contributing guidelines.

Thanks for submitting a pull request.
Please provide enough information so that others can review your pull request:

Summary

This PR fixes/implements the following bugs/features
Adds support for WeAct F411 8M HSE variant as menu entry BlackPill F411CE (HSE 8Mhz). Original menu entry BlackPill F411CE renamed to BlackPill F411CE (HSE 25Mhz) to avoid confusion. F411 25M HSE 8M Flash was not added at this time, because the board is functionally equal to the existing supported device, just with the addition of the flash chip connected to SPI pins on PA4, PA5, PA6, and PA7.

Explain the motivation for making this change. What existing problem does the pull request solve?
Fixes device not working properly due to incompatible clock settings.

Validation

  • Ensure CI build is passed.
  • Demonstrate the code is solid. [e.g. Provide a sketch]
#include <Arduino.h>

#define LED_PIN PC13

void setup() {
  pinMode(LED_PIN, OUTPUT);
  Serial.begin(115200);
  
  while (!Serial) {
    digitalWrite(LED_PIN, !digitalRead(LED_PIN));
    delay(50);
  }  
}

void loop() {
  Serial.println("USB CDC Working!");
}

Code formatting

  • Ensure AStyle check is passed thanks CI

Closing issues

Fixes #3030

@fpistm fpistm added the enhancement New feature or request label Aug 10, 2026
@fpistm fpistm added this to the 3.0.1/3.1.0 milestone Aug 10, 2026
@fpistm
fpistm self-requested a review August 10, 2026 12:30

@fpistm fpistm left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @lehjr for this PR.
LGTM

@github-project-automation github-project-automation Bot moved this from In progress to Reviewer approved in STM32 core based on ST HAL Aug 10, 2026
@fpistm
fpistm merged commit 7013f04 into stm32duino:main Aug 10, 2026
28 checks passed
@github-project-automation github-project-automation Bot moved this from Reviewer approved to Done in STM32 core based on ST HAL Aug 10, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

Development

Successfully merging this pull request may close these issues.

[Variant Request] BlackPill 411CE variants

2 participants