Search found 414 matches

by GonzoG
Mon May 01, 2023 1:38 pm
Forum: STM32 HID bootloader
Topic: HID Upload Error Arduino
Replies: 5
Views: 13365

Re: HID Upload Error Arduino

" Error - [1209:BEBA] device is not found"
Means that your board does not have HID bootloader or it couldn't be booted into bootloader.

Port has to disconnect, as the board needs to reset to enter bootloader.
by GonzoG
Sun Apr 30, 2023 3:55 pm
Forum: General discussion
Topic: i2c2 not working stm32f103c6
Replies: 3
Views: 1484

Re: i2c2 not working stm32f103c6

It can't work...
Datasheet is almost always helpful:
https://www.st.com/resource/en/datashee ... f103c6.pdf

First page:
– 1 x I2C interface (SMBus/PMBus)
by GonzoG
Sat Apr 15, 2023 8:08 pm
Forum: STM boards (Discovery, Eval, Nucleo, ...)
Topic: STM32F103C8 128K - USB unknow
Replies: 2
Views: 5427

Re: STM32F103C8 128K - USB unknow

(...) I just don't see the COM, because my computer doesn't recognize it for some reason. I don't understand why this is happening, as I have installed already the necessary drivers for it to recognize the port. (...) You don't see COM port as there is none. You need to flash sketch with USB COM po...
by GonzoG
Sat Mar 18, 2023 6:11 pm
Forum: General discussion
Topic: Port greyed out on arduino ide
Replies: 2
Views: 1505

Re: Port greyed out on arduino ide

If USB CDC is not enabled in your sketch, you won't see COM port as there isn't one configured.
DFU is completely different thing.
by GonzoG
Wed Mar 15, 2023 10:33 pm
Forum: General discussion
Topic: [New User] Access additional pins from Arduino IDE?
Replies: 2
Views: 647

Re: [New User] Access additional pins from Arduino IDE?

Just use their "names" PA1, PB4, etc.
by GonzoG
Mon Mar 13, 2023 10:49 am
Forum: General discussion
Topic: DFU bootloader has errors on new BlackPill F411
Replies: 44
Views: 24147

Re: DFU bootloader has errors on new BlackPill F411

@hdleng
It's not that simple. In my case, I need to touch GND and reset board.
The problem with entering DFU is caused by floating RX1 pin (PA10). So if using finger touching GND it might be pulled to GND as PA10 is close to BOOT and RST buttons.
by GonzoG
Wed Mar 08, 2023 8:57 pm
Forum: General discussion
Topic: Issue with I2C between 2 STM32F411 black pill
Replies: 7
Views: 3050

Re: Issue with I2C between 2 STM32F411 black pill

Billie34 There's no such thing as "I2C pins are often mapped to PB10 and PB11". Each MCU may have different pins used for "same" interface. Read MCU datasheet or board pinout to find which pins are used for which interface. Also, there is no WeActStudio STM32F411 MCU. STM32 MCUs...
by GonzoG
Wed Mar 08, 2023 8:42 pm
Forum: General discussion
Topic: Documentation for basic functions?
Replies: 4
Views: 1066

Re: Documentation for basic functions?

pwmWrite() is a function from libMaple/Roger's core. It's pretty limited compared to official STM32 core.
Roger's core wiki: https://stm32duinoforum.com/forum/wiki_ ... _Page.html
official STM32 core wiki: https://github.com/stm32duino/Arduino_Core_STM32/wiki
by GonzoG
Mon Mar 06, 2023 4:00 pm
Forum: General discussion
Topic: USB virtual com-port for Blue Pill
Replies: 6
Views: 2450

Re: USB virtual com-port for Blue Pill

There is no COM port on STM. COM ports are on PC. You have USB CDC (using virtual COM port on PC) or UART (not a COM, it's a simple serial interface). If you enable USB CDC (generic Serial supersede U(S)ART) "Serial" will use USB and U(S)ARTs wall start with Serial1. https://github.com/stm...

Go to advanced search