Search found 13 matches
- Wed Nov 15, 2023 9:39 am
- Forum: General discussion
- Topic: How to generate truly random numbers on STM32F401CCU6 in Arduino IDE?
- Replies: 4
- Views: 10464
Re: How to generate truly random numbers on STM32F401CCU6 in Arduino IDE?
Got it. Thank you.
- Sun Nov 12, 2023 4:40 am
- Forum: General discussion
- Topic: How to generate truly random numbers on STM32F401CCU6 in Arduino IDE?
- Replies: 4
- Views: 10464
Re: How to generate truly random numbers on STM32F401CCU6 in Arduino IDE?
I've tried that.
And I got the following error:
Arduino: 1.8.19 (Windows 10), Board: "Generic STM32F4 series, Generic F401CC, STM32CubeProgrammer (DFU), Enabled (generic 'Serial'), CDC (generic 'Serial' supersede U(S)ART), Low/Full Speed, Smallest (-Os default), Newlib Nano (default ...
And I got the following error:
Arduino: 1.8.19 (Windows 10), Board: "Generic STM32F4 series, Generic F401CC, STM32CubeProgrammer (DFU), Enabled (generic 'Serial'), CDC (generic 'Serial' supersede U(S)ART), Low/Full Speed, Smallest (-Os default), Newlib Nano (default ...
- Fri Nov 10, 2023 8:58 am
- Forum: General discussion
- Topic: How to generate truly random numbers on STM32F401CCU6 in Arduino IDE?
- Replies: 4
- Views: 10464
How to generate truly random numbers on STM32F401CCU6 in Arduino IDE?
Hello, Everyone.
I'm working on a project that requires the STM32F401CCU6 to generate truly random numbers.
Is there a way to do it in the Arduino IDE? And if there is, please give me a code that does it.
I tried to use the code from the STM32F407VET6 for that purpose, but it won't even compile.
I'm working on a project that requires the STM32F401CCU6 to generate truly random numbers.
Is there a way to do it in the Arduino IDE? And if there is, please give me a code that does it.
I tried to use the code from the STM32F407VET6 for that purpose, but it won't even compile.
- Wed Nov 08, 2023 11:07 am
- Forum: Let us know a bit about you and your projects
- Topic: STM32F407VET6 Version of Midbar
- Replies: 2
- Views: 11705
Re: STM32F407VET6 Version of Midbar
Midbar (STM32F407VET6 Version) V2.0 is out.
You can find the tutorials for it on:
https://www.instructables.com/Midbar-STM32F407VET6-Version-V20/
https://medium.com/@Northstrix/midbar-stm32f407vet6-version-v2-0-140cef010ca2
https://www.hackster.io/northstrix/midbar-stm32f407vet6-version-v2-0 ...
You can find the tutorials for it on:
https://www.instructables.com/Midbar-STM32F407VET6-Version-V20/
https://medium.com/@Northstrix/midbar-stm32f407vet6-version-v2-0-140cef010ca2
https://www.hackster.io/northstrix/midbar-stm32f407vet6-version-v2-0 ...
- Wed Sep 20, 2023 9:29 am
- Forum: Let us know a bit about you and your projects
- Topic: STM32F407VET6 Version of Midbar
- Replies: 2
- Views: 11705
Re: STM32F407VET6 Version of Midbar
RFID-lockable STM32F407VET6 version of Midbar is out now.
You can find the tutorials for it on:
https://www.instructables.com/Midbar-STM32F407VET6-Arduino-Uno-Version/
https://www.hackster.io/northstrix/midbar-stm32f407vet6-arduino-uno-version-914d5c
https://medium.com/@Northstrix/midbar ...
You can find the tutorials for it on:
https://www.instructables.com/Midbar-STM32F407VET6-Arduino-Uno-Version/
https://www.hackster.io/northstrix/midbar-stm32f407vet6-arduino-uno-version-914d5c
https://medium.com/@Northstrix/midbar ...
- Wed Sep 13, 2023 2:25 am
- Forum: Let us know a bit about you and your projects
- Topic: STM32F407VET6 Version of Midbar
- Replies: 2
- Views: 11705
STM32F407VET6 Version of Midbar
Hello, everyone.
My name is Max. I'm a computer science student and a self-proclaimed embedded system developer. I began learning to code in 2017 but only started making more or less complex and functioning projects around 2021.
As for the projects, let me introduce you to my most recent project ...
My name is Max. I'm a computer science student and a self-proclaimed embedded system developer. I began learning to code in 2017 but only started making more or less complex and functioning projects around 2021.
As for the projects, let me introduce you to my most recent project ...
- Tue Sep 05, 2023 4:38 am
- Forum: General discussion
- Topic: Making use of STM32F407VET6's Truly Random Number Generator in Arduino IDE
- Replies: 11
- Views: 5673
Re: Making use of STM32F407VET6's Truly Random Number Generator in Arduino IDE
Got it. Thank you so much.
It works.


It works.


- Tue Sep 05, 2023 3:30 am
- Forum: Projects
- Topic: Rotary encoder with STM32F401CCU
- Replies: 6
- Views: 14760
Re: Rotary encoder with STM32F401CCU
Hi, I know It's a bit too late, but still, here's the library.
https://github.com/GyverLibs/EncButton
I've actually used it in two of my projects involving STM32F401CCU6.
https://github.com/GyverLibs/EncButton
I've actually used it in two of my projects involving STM32F401CCU6.
- Tue Sep 05, 2023 3:21 am
- Forum: General discussion
- Topic: Making use of STM32F407VET6's Truly Random Number Generator in Arduino IDE
- Replies: 11
- Views: 5673
Re: Making use of STM32F407VET6's Truly Random Number Generator in Arduino IDE
You can also use HAL directly:
First HAL RNG have to be enabled, to do this, simply add a file named "hal_conf_extra.h" and add this:
#define HAL_RNG_MODULE_ENABLED
Then the code:
RNG_HandleTypeDef hrng;
/**
* @brief RNG MSP Initialization
* This function configures the hardware resources ...
- Mon Sep 04, 2023 8:34 am
- Forum: General discussion
- Topic: Making use of STM32F407VET6's Truly Random Number Generator in Arduino IDE
- Replies: 11
- Views: 5673
Re: Making use of STM32F407VET6's Truly Random Number Generator in Arduino IDE
Ok, thank you.
That document gave me a very vague understanding of how the RNG works (in theory).
But still, I don't know what to do with it in practice.
That document gave me a very vague understanding of how the RNG works (in theory).
But still, I don't know what to do with it in practice.