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

Hello, I created a simple ADC project for the STM32F302R8, for polling operation it works, when I add an interrupt, the value is not read. I attach the code and ask for any suggestions.

#include <stdint.h>#include <stdio.h>#include "stm32f302x8.h"void delay1(void);volatile uint32_t value;int main(void){   RCC->AHBENR = 1U<<28;   RCC->AHBENR |= 1U<<17;   GPIOA->MODER |= (1U<<8); //ADC1_IN5   GPIOA->MODER |= (1U<<9);   ADC1_COMMON->CC...

KSuch.3 by Associate
  • 603 Views
  • 0 replies
  • 0 kudos

Read Parallel CMOS ADC using Nucleo-H743ZI2

HI thereI am do a continues read an of ADC a parallel binary data https://datasheets.maximintegrated.com/en/ds/MAX2771.pdf at the speed from 4-16MSPS with nucleo-H743ZI2. The binary data is sent through 2 ADCs where each has a specific channel I(I0,I...

0693W00000Stus6QAB.png
AElta.1 by Associate II
  • 2340 Views
  • 3 replies
  • 0 kudos

Resolved! STM32F446RE TTCAN level 1 possible?

Hi everyone,I think like most people, I ignored the errata sheet till it was too late. I know that the stm32f4 and quite a few others do not provide hardware support for TTCAN, which as far as my understanding goes is level 2 CAN (global time synchro...

RMarc.4 by Associate II
  • 2035 Views
  • 6 replies
  • 0 kudos

FDCAN Receive data issue in STM32G0B1RE

Hello Every One!! I am Using NUCLEO G0B1RE Board, facing Issue with CAN Receive Function I am using MICROCHIP CAN BUS ANALYSER and NUCLEO BOARD for CAN Communication void CAN_Recieve(void){ while( (HAL_FDCAN_GetRxFifoFillLevel(&hfdcan1,FDCAN_RX_FIFO0...