STM32 MCUs Embedded software

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

LL drivers UART RXNE interrupt not working.

Hi !I am writing a code that uses the UART1 and I would like to work on RX interrupt to handle incoming strings.To start with it, I wrote a code that simply initialise the UART and send a character once the RX Interrupt is fired:#ifndef HSE_VALUE #de...

simo zz by Senior
  • 452 Views
  • 0 replies
  • 0 kudos

Resolved! using cdc vcp with adc in dma Mode

Posted on December 17, 2017 at 20:58Hello,i am trying to send data from the adc over the usb otg fs as virtual com port to my pc where i receive the data with a terminal program(HTerm).Using the ADC in 8bit Mode works perfectly. The settings are the...

Resolved! STM32F103RE USB HOST FOR KEY DISK

Greetings Everybody,I am confused whether i cam make STM32F103RE to work as usb host for mass storage ? In CUBE MX it says mass storage class but does it mean i can connect my USB disk to it and transfer data to it ? I know STM32F207ZG has the suppor...

Resolved! DHCP does not work when I change my Mac Address.

 Board: STM32746G-DiscoveryProject: LwIP_HTTP_Server_Netconn_RTOSPosition: ethernetif.c stm32f7xx_hal_conf.h#define MAC_ADDR0  0U#define MAC_ADDR1  2U#define MAC_ADDR2  0U#define MAC_ADDR3  0U#define MAC_ADDR4  0U#define MAC_ADDR5  0UWhen set as abov...

Bootloader behavior

Hi,I need some help to understand the behavior of the bootloader.Currently I use STM32F746 but I will move to STM32F778AI next week.I have several needs from bootloader:Load bootloader if there is no user application.Load user application on start ( ...

davidra7 by Associate II
  • 455 Views
  • 3 replies
  • 0 kudos

Resolved! Where are the DEMO source project file for the OUT OF BOX demo for the Nucleo-64 STM32F303RE board.

I purchased a Nucleo-64 STM32F303RE for beginning a project. I have downloaded the tools, this includes CUBE_MX and CUBE_IDE. I am able to build a project using these tools as instructed. What I want to know is where is the DEMO project that is loade...

TFlac by Associate III
  • 499 Views
  • 2 replies
  • 0 kudos

How to restart into bootloader (with DFU).

typedef void resetvec(void);       void cmd_jbl(BaseSequentialStream *chp, int argc, char **argv) // reboot to bootloader   {    unsigned int t;        (void)argc;     (void)argv;    (void)chp;    resetvec *fun;         fun = ((uint32_t *)0x1fffc800)...