'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?
Search found 6 matches
- Fri Jun 14, 2024 9:35 am
- Forum: General discussion
- Topic: STM32 ports not visible
- Replies: 13
- Views: 6207
- 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 ...
- Thu Jun 13, 2024 3:36 pm
- Forum: General discussion
- Topic: STM32 ports not visible
- Replies: 13
- Views: 6207
Re: STM32 ports not visible
Is there any way to do it with usb to ttl converter.STM32ardui wrote: Thu Jun 13, 2024 12:55 pmST Link V2 connected to SWD interface.criz wrote: Thu Jun 13, 2024 12:00 pm How do I install a sketch to stm32 when there is no port available.
- 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 ...
- 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 ...
- 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 ...