User Activity

We are using PWM here to change the brightness of LCD display, but PWM is not working , as of now I don't have CRO's as I'm working remotely. Is there anything wrong in the below code??#include "stm32h7xx.h"   void PwmGpioInitalize() { /* Timer GP...
#include <stdint.h> #include <stdio.h> #include "bspapi.h" #include "FreeRTOS.h" #include "task.h" #include "queue.h" #include "stm32f4xx.h"   TaskHandle_t Task3Handle = NULL;     static char key = 'Q'; extern int state = 0; xQueueSetHandle xQueue;  ...
I am new to this nucleo board ( Nucleo-64 , STM32F411-re). I've configured SPI1 port as master and SPI4 port as slave. I am trying to establish communication between these two ports and verifying the data weather its reflecting on SPI1-> DR data regi...
I am new to this evaluation board, (Nucleo-64 STM32F411), I am working on timer , I need to Update event for every 1s and for every 1 s response from the Timer base I need to toggle the status of the LED.In the following code I am not able to toggle ...
I am new to Nucleo board STM32F411re.I am trying to work out an UART example on the devlopment boardI am trying to send data through UART - TX line and trying to read that data using Putty. I can't able to see data in Putty. When I debugged I saw dat...