User Activity

We are porting a display-project from Imagecraft-compiler to IAR-compiler for the STM32F446-chip. This is the most vital bits of the LDC-drive (with ILI9488-chip). The pins are alive, checked by an oscilloscope (we don't have a logic analyzer) and th...
#include "stm32f4xx_hal.h" static UART_HandleTypeDef UartHandle;   void Setup( void ) { GPIO_InitTypeDef GPIO_InitStruct;     /* STM32F4xx HAL library initialization: - Configure the Flash prefetch, instruction and Data caches - ...
#define STARTUP_MSG "Test Rx-interrupt\n"   #include <stdio.h> #include "stm32f4xx_hal.h"   #define get_RTC HAL_GetTick #define LED_inv HAL_GPIO_TogglePin(GPIOA,GPIO_PIN_5) #define LED_on HAL_GPIO_WritePin(GPIOA,GPIO_PIN_5,GPIO_PIN_SET) #define LED_o...
Here is the code that doesn't work. Any suggestions?UART_HandleTypeDef UartHandle;uint8_t MyRxBuf[ 10 ], MyTxBuf[3];int main( void ) {  uint32_t t_print;  int16_t i;  HAL_Init();  SystemClock_Config();   /* Put the USART peripheral in the Asynchronou...
 HAL_Init(); SystemClock_Config();// Configure the system clock to 180 MHz __HAL_RCC_GPIOA_CLK_ENABLE(); GPIO_InitStruct.Pin = GPIO_PIN_13; GPIO_InitStruct.Mode = GPIO_MODE_INPUT; GPIO_InitStruct.Pull = GPIO_NOPULL; HAL_GPIO_Init(GPIOC, &GPIO_InitStr...