You can change those but drivers will stop loading, as they use VID and PID values to recognize device.
There a few files where those are set. The easiest way it to search all core files for VID or PID value (eg. using Unreal Commander or Total Commander).
Search found 508 matches
- Wed Sep 17, 2025 10:29 pm
- Forum: Libraries & Hardware
- Topic: Set your own PID and VID
- Replies: 1
- Views: 15
- Sat Sep 06, 2025 10:13 pm
- Forum: General discussion
- Topic: STM32L011D4 / Arduino_Core_STM32 / platformIO : region `RAM' overflowed
- Replies: 6
- Views: 1447
Re: STM32L011D4 / Arduino_Core_STM32 / platformIO : region `RAM' overflowed
With all options enabled stm32duino will need quite a lot of flash and RAM.
It's because it's made to be easy to use and not resource efficient.
You can disable unused peripherals and this will save some flash and ram:
https://github.com/stm32duino/Arduino_C ... figuration
It's because it's made to be easy to use and not resource efficient.
You can disable unused peripherals and this will save some flash and ram:
https://github.com/stm32duino/Arduino_C ... figuration
- Mon Jul 21, 2025 1:28 pm
- Forum: STM boards (Discovery, Eval, Nucleo, ...)
- Topic: F303RE Release
- Replies: 1
- Views: 13052
Re: F303RE Release
it's a version of stm32duino from which each MCU/board is supported.
- Sun Jun 22, 2025 7:48 pm
- Forum: Projects
- Topic: RedPill001 STM32F103 Board
- Replies: 1
- Views: 14676
Re: RedPill001 STM32F103 Board
It's H5 board, not F1.
You probably won't find a compiled USB bootloader for it, you will have to compile one yourself.
analogRead() is really slow on H5/H7 MCUs.
You probably won't find a compiled USB bootloader for it, you will have to compile one yourself.
analogRead() is really slow on H5/H7 MCUs.
- Mon Jun 16, 2025 9:54 am
- Forum: Off topic
- Topic: IR remote control project
- Replies: 2
- Views: 4257
Re: IR remote control project
Did you try to use this library ??
- Fri Jun 13, 2025 10:17 am
- Forum: General discussion
- Topic: Issue with STM32 Core: Board Not Detected After Upload / Red SYS LED
- Replies: 2
- Views: 10244
Re: Issue with STM32 Core: Board Not Detected After Upload / Red SYS LED
Not enough information.
1. are you 100% sure the LED shouldn't be on ??
2. did you set it up to have com port ??
3. do you connected it to correct usb port ??
4. my crystal ball run out of magic juice... which board you're talking about... ??
1. are you 100% sure the LED shouldn't be on ??
2. did you set it up to have com port ??
3. do you connected it to correct usb port ??
4. my crystal ball run out of magic juice... which board you're talking about... ??
- Tue Jun 10, 2025 10:18 am
- Forum: STM boards (Discovery, Eval, Nucleo, ...)
- Topic: mini STM32F103C8T6 CH340 Serial pins
- Replies: 9
- Views: 14362
Re: mini STM32F103C8T6 CH340 Serial pins
To program stm32f103c8t6 blue pill via uart you need to set boot0
and you need stm32cubeprogrammer (or some such programming util)
https://www.st.com/en/development-tools/stm32cubeprog.html
^^ this is from ST (you can consider that an official programming tool)
Isn't that exactly what he wrote ...
- Tue Jun 10, 2025 10:10 am
- Forum: General discussion
- Topic: STM32 Algorithms
- Replies: 2
- Views: 6935
Re: STM32 Algorithms
Wrong subforum - you're asking about STM32 and posted in STM8.
This won't be done automatically by MCU (with one or a few simple commands).
First you need to measure length of pulses or time between them and by comparing them find the gap to get your program synchronized. Then you can count pulses ...
This won't be done automatically by MCU (with one or a few simple commands).
First you need to measure length of pulses or time between them and by comparing them find the gap to get your program synchronized. Then you can count pulses ...
- Mon Jun 09, 2025 9:59 pm
- Forum: STM boards (Discovery, Eval, Nucleo, ...)
- Topic: mini STM32F103C8T6 CH340 Serial pins
- Replies: 9
- Views: 14362
Re: mini STM32F103C8T6 CH340 Serial pins
STM32F103 has a USB interface built-in. Those are PA11 and PA12 pins. But it does not have USB bootloader (called DFU by STM) so you cannot flash firmware using USB without software bootloader (like HID bootloader )
It looks like those jumpers (not resistors) are under CH340 and by default are not ...
It looks like those jumpers (not resistors) are under CH340 and by default are not ...
- Mon Jun 09, 2025 7:03 pm
- Forum: STM boards (Discovery, Eval, Nucleo, ...)
- Topic: mini STM32F103C8T6 CH340 Serial pins
- Replies: 9
- Views: 14362
Re: mini STM32F103C8T6 CH340 Serial pins
What are your settings for UART and USB support in Arduino IDE ??