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

I am trying to control esc using STM32F446RE Nucleo 64 board but after uploading the program nothing shows up.I am using timer 2 channel one.

#include "main.h"TIM_HandleTypeDef htim2;void SystemClock_Config(void);static void MX_GPIO_Init(void);static void MX_TIM2_Init(void);int main(void){ HAL_Init(); SystemClock_Config(); MX_GPIO_Init(); MX_TIM2_Init(); /* USER CODE BEGIN 2 */   HAL_TIM_P...

PIngo.1 by Associate
  • 515 Views
  • 1 replies
  • 0 kudos

STM32F446 and ADS8885 code help

HiPlease can someone help me with the code for STM32F446 and ADS8885 http://www.ti.com/lit/ds/sbas568a/sbas568a.pdf I'm not sure how to read the values ​​using SPI here is part of my code.uint8_t adc_buff[3] = {0,0,0}; uint32_t adc_val = 0;   HAL_GPI...

MDoln.1 by Associate II
  • 995 Views
  • 4 replies
  • 0 kudos

Hi, I'm using an STM32F072VB eval board and having issues receiving a CAN message and transmitting the same message to UART. I'm using IXXAT CAN Analyzer and basing my code on the CAN_Networking example which worked fine. I attached my code, any help?

/* Includes ------------------------------------------------------------------*/#include "main.h"#include <stdio.h>#include <malloc.h>/* Private includes ----------------------------------------------------------*/ /* Private variables --------------...