Search found 51 matches

by STM32_Newbbe
Thu Sep 16, 2021 8:52 am
Forum: General discussion
Topic: can USB be used to create a virtual com port?
Replies: 33
Views: 8279

Re: can USB be used to create a virtual com port?

If this is too dumb a question, could someone please point me in the right direction to find an answer myself?

Thanks
by STM32_Newbbe
Fri Sep 10, 2021 7:33 am
Forum: General discussion
Topic: can USB be used to create a virtual com port?
Replies: 33
Views: 8279

can USB be used to create a virtual com port?

Hi,

Some controllers come with onboard USB functionality.
Can this interface be used to create a com port similar to the VCP that is available through the onboard ST-Link?
by STM32_Newbbe
Fri Sep 10, 2021 7:30 am
Forum: Custom design boards
Topic: arduino-style upload on custom boards possible?
Replies: 8
Views: 10875

Re: arduino-style upload on custom boards possible?

well, I already found out that setting registers or jumping to boot memory should do the trick... or attaching a cap to the boot-pin and soft-reset... BUT: how about integration into the "toolchain" (sorry I'm not that used to this and still struggle to use the right words) bluntly put: ho...
by STM32_Newbbe
Tue Sep 07, 2021 5:41 am
Forum: Custom design boards
Topic: arduino-style upload on custom boards possible?
Replies: 8
Views: 10875

Re: arduino-style upload on custom boards possible?

seems I wasn't clear on what I try to achieve...

I want an upload method that does not need an ST-Link and that does not need to push a button or wire some pins.
And it would be really nice if it can be integrated in the Arduino IDE or even better into Sloeber.
by STM32_Newbbe
Mon Sep 06, 2021 6:58 am
Forum: Custom design boards
Topic: arduino-style upload on custom boards possible?
Replies: 8
Views: 10875

arduino-style upload on custom boards possible?

Hello, I am quite happy with the Arduino integration of the Nucleo-boards and am currently wondering if such a simple uploader can also be realized in custom boards? Does it rely on an ST-Link to be attached to the board? Is there a way to create an uploader that has no need for bootmode & reset...
by STM32_Newbbe
Thu May 20, 2021 11:49 am
Forum: STM boards (Discovery, Eval, Nucleo, ...)
Topic: NUCLEO-L4P5ZG support ?
Replies: 5
Views: 3794

Re: NUCLEO-L4P5ZG support ?

Hi @fpiSTM

thanks for the link to the wiki. I'll keep an eye on it for the update

Cheers,
Bob
by STM32_Newbbe
Mon May 17, 2021 11:52 am
Forum: STM boards (Discovery, Eval, Nucleo, ...)
Topic: NUCLEO-L4P5ZG support ?
Replies: 5
Views: 3794

NUCLEO-L4P5ZG support ?

Hello,

are there any plans to integrate the NUCLEO-L4P5ZG board to STM32duino?
Or are there other possibilities (for a newbie) to get this board running with the Arduino-IDE?

Cheers,
Bob
by STM32_Newbbe
Mon Nov 09, 2020 2:35 pm
Forum: General discussion
Topic: Combining bare metal / low-level library and Arduino
Replies: 6
Views: 3807

Re: Combining bare metal / low-level library and Arduino

now the compiler complaints about TIM2_IRQHandler and EXTI9_5_IRQHandler already being defined :(

I added

Code: Select all

  #undef HAL_TIM_MODULE_ENABLED
  #define HAL_TIM_MODULE_DISABLED
  #undef HAL_EXTI_MODULE_ENABLED
  #define HAL_EXTI_MODULE_DISABLED
no change
by STM32_Newbbe
Fri Nov 06, 2020 5:29 am
Forum: General discussion
Topic: Combining bare metal / low-level library and Arduino
Replies: 6
Views: 3807

Re: Combining bare metal / low-level library and Arduino

thanks again!

so much to learn...
by STM32_Newbbe
Thu Nov 05, 2020 12:54 pm
Forum: General discussion
Topic: Combining bare metal / low-level library and Arduino
Replies: 6
Views: 3807

Re: Combining bare metal / low-level library and Arduino

Hi fpi, that brought me one step further! Thanks a lot :) at least TIM15 is now working. I also can initialize TIM2, but the UPDATE-interrupt does not get serviced And, if I activate the TRIGGER-interrupt, the system halts at first rising edge of TIM15 output, i.e. the trigger event for TIM2 I guess...

Go to advanced search