Could you try an edit to the STM32F030RC FCD file
32F030RC.fcdx in C:\ProgramData\MatrixTSL\FlowcodeV9\FCD\ARM
Search for name='UART4' and change it to name='USART4'
Similarly name='UART5' and change it to name='USART5'
Then restart Flowcode or re-load the project
Search found 451 matches
- Mon May 19, 2025 6:33 pm
- Forum: Bug Reports
- Topic: STM32F030RC - UART4 and UART5 problem
- Replies: 8
- Views: 964
- Thu Apr 24, 2025 4:58 pm
- Forum: General
- Topic: Pico Compiler toolchain
- Replies: 10
- Views: 3422
Re: Pico Compiler toolchain
Please can you attach your test Flowcode project file and resulting .txt log file
- Fri Apr 11, 2025 5:48 pm
- Forum: Feature Requests
- Topic: STM32F469I-DISCO board SD-Card Pin not available
- Replies: 14
- Views: 9402
Re: STM32F469I-DISCO board SD-Card Pin not available
Are SDI and SDO the wrong way round?
- Fri Apr 11, 2025 3:43 pm
- Forum: Feature Requests
- Topic: STM32F469I-DISCO board SD-Card Pin not available
- Replies: 14
- Views: 9402
Re: STM32F469I-DISCO board SD-Card Pin not available
Try a C code icon with
Code: Select all
SET_PORT_PIN(C, 9, 1);
SET_PORT_PIN(C, 10, 1);
- Fri Apr 11, 2025 3:30 pm
- Forum: Feature Requests
- Topic: STM32F469I-DISCO board SD-Card Pin not available
- Replies: 14
- Views: 9402
- Fri Apr 11, 2025 2:22 pm
- Forum: Feature Requests
- Topic: STM32F469I-DISCO board SD-Card Pin not available
- Replies: 14
- Views: 9402
Re: STM32F469I-DISCO board SD-Card Pin not available
Just to add to Martin's comment, a look at the datasheet indicates that A9 could be added to the fcd for SPI2 CLK, but not A12.
edit: The circuit diagram shows port C pin 12, using SDIO interface, which Flowcode doesn't support.
Suggest trying software SPI mode?
edit: The circuit diagram shows port C pin 12, using SDIO interface, which Flowcode doesn't support.
Suggest trying software SPI mode?
- Tue Apr 08, 2025 10:42 am
- Forum: Bug Reports
- Topic: Enabling RXINT on STM32F411CE hangs
- Replies: 5
- Views: 4042
Re: Enabling RXINT on STM32F411CE hangs
Hi Brendan,
I am not getting any hang.
Could you attach a sample program that demonstrates the issue?
For example, are you initializing the UART component?
I am not getting any hang.
Could you attach a sample program that demonstrates the issue?
For example, are you initializing the UART component?
- Wed Mar 05, 2025 3:14 pm
- Forum: Bug Reports
- Topic: STM32F4xx Uart
- Replies: 2
- Views: 1991
Re: STM32F4xx Uart
I think the issue here is that you shouldn't mix interrupt driven comms with a polled timed loop.
- Wed Mar 05, 2025 2:50 pm
- Forum: General
- Topic: STM32F QUESTIONS
- Replies: 20
- Views: 8741
Re: STM32F QUESTIONS
I've put the code into the CAL file (STARM_CAL_RTC.c)
this goes into directory...
C:\ProgramData\MatrixTSL\FlowcodeV10\CAL\STARM\
This will avoid the need for the extra C icon code.
Note that if you swap between LSI and LSE you need to cycle all power
this goes into directory...
C:\ProgramData\MatrixTSL\FlowcodeV10\CAL\STARM\
This will avoid the need for the extra C icon code.
Note that if you swap between LSI and LSE you need to cycle all power
- Thu Feb 27, 2025 4:41 pm
- Forum: Tips & Tricks
- Topic: STM32F dev board programming via DFU USB bootloader
- Replies: 1
- Views: 14341
STM32F dev board programming via DFU USB bootloader
I found a little time to play with STM32F DFU programming via the USB bootloader, this avoids needing the ST-link programmer. This has been tested with a WeAct STM32F411CE 8MHz Black Pill dev board. First install the STM32CubeProgrammer from www.st.com (at default location) Here's an FCD with modifi...