STM32 MCUs Products

Ask questions, find answers, and share insights on STM32 products and their technical features.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

hard fault after configure systick

i use NUCLEO - F767ZI and test a simple code as followint sum(int a,int b){   return a+b; }   int main(void){   int dly;   __enable_irq(); SysTick_Config(100000); NVIC_EnableIRQ(SysTick_IRQn); dly = sum(1,3); return 0...

cai.bai by Associate II
  • 2879 Views
  • 14 replies
  • 0 kudos

ı try to internal flash codding with STM32L476 ı van erase the banks and pages but HAL_FLASH_Program İS NOT WORKİNG ı get the SR errors(SIZERR,PGSERR) so how can ı fix it

my code is,  /* Includes ------------------------------------------------------------------*/#include "main.h"#include "stm32l4xx_hal.h"#define FLASH_BSY   (1 << 16)/* Fast programming not used => related errors not used*/#define FLASH_PGSERR  (1 << ...

yekme by Associate
  • 604 Views
  • 2 replies
  • 0 kudos

STM32L152 WakeUp time

Hi,I would like to know if the wakeup time from STOP mode is defined, when LOWPOWERREGULATOR is ON and the main clock is used a MSI (4194 MHz). Can not find this information. Also I would like to compare it with others Low Power modes...Thank you fo...

JAN R by Associate III
  • 350 Views
  • 1 replies
  • 1 kudos

wolfSSH config for STM32F103C8T6

Hi I'm new to this thing. does anyone has any example or config on how to implement the wolfSSH for STM32F103C8T6.Is there any other supporting SSH library which I can use with STM32F103C8T6? Thanks in advance.

VHado by Associate
  • 482 Views
  • 1 replies
  • 0 kudos

Resolved! CAN BUS RECEIVE INTERRUPT

Hi;Can not interrupt CAN BUS application?I'm using the following codevoid HAL_CAN_RxFifo0MsgPendingCallback(CAN_HandleTypeDef *hcan){ HAL_CAN_GetRxMessage(&hcan1, CAN_RX_FIFO0, &RxMessage, RxData);}

STM32F072 USB-CDC-VCP driver

Is it possible to use self-powered STM32F072 as USB peripheral, permanently connected to Raspberry-Pi host on USB?My worry is during recovery from STM32 power reset/ watchdog reset, raspberry-pi getting powereup alone , whether the USB-VCP-CDC will r...