Search found 6 matches

by criz
Fri Jun 14, 2024 9:35 am
Forum: General discussion
Topic: STM32 ports not visible
Replies: 13
Views: 6207

Re: STM32 ports not visible

'Couldn't find the DFU device: [1EAF:0003]'.
All I am getting is this when I try to program stm32 using arduino ide.Any way to solve this?
by criz
Fri Jun 14, 2024 9:25 am
Forum: General discussion
Topic: STM32 ports not visible
Replies: 13
Views: 6207

Re: STM32 ports not visible




COM port is not visible because there is no COM port until you upload program that has COM port enabled.
Those bootloaders (maple bootloader and HID bootloader) do not use COM port for upload. They detect board by specific ID. COM port is needed only to reset board from Arduino IDE and enter ...
by criz
Thu Jun 13, 2024 3:36 pm
Forum: General discussion
Topic: STM32 ports not visible
Replies: 13
Views: 6207

Re: STM32 ports not visible

STM32ardui wrote: Thu Jun 13, 2024 12:55 pm
criz wrote: Thu Jun 13, 2024 12:00 pm How do I install a sketch to stm32 when there is no port available.
ST Link V2 connected to SWD interface.
Is there any way to do it with usb to ttl converter.
by criz
Thu Jun 13, 2024 2:09 pm
Forum: General discussion
Topic: STM32 ports not visible
Replies: 13
Views: 6207

Re: STM32 ports not visible


COM port is not visible because there is no COM port until you upload program that has COM port enabled.
Those bootloaders (maple bootloader and HID bootloader) do not use COM port for upload. They detect board by specific ID. COM port is needed only to reset board from Arduino IDE and enter ...
by criz
Thu Jun 13, 2024 12:00 pm
Forum: General discussion
Topic: STM32 ports not visible
Replies: 13
Views: 6207

Re: STM32 ports not visible


you need to install a sketch as like

void setup() {
Serial.begin();
while(!Serial); // optional, wait for host to connect
pinMode(LED_BUILTIN, OUTPUT);
}

#define CR '\r'
#define LF '\n'

void loop() {
Serial.println("hello world");
if(Serial.available()) {
int16_t c = Serial.read ...
by criz
Tue Jun 11, 2024 9:52 am
Forum: General discussion
Topic: STM32 ports not visible
Replies: 13
Views: 6207

STM32 ports not visible

Few weeks back I bought a STM32F103C6T6A Board from an online vendor.When I first connected it to the laptop using a microusb cable,onboard led was blinking.I was only starting on the STM32 boards so I didn't know it doesn't come with a bootloader installed.Instead of using STLink, I decided to ...

Go to advanced search