STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

STM32F429IGT6 LTDC with RGB888 Settings

Hello, I use STM32F429IGT6 MCU I am trying to communicate with TI's DLPC through HW connection. To use this, use LTDC. SW uses the Standard Peripheral Library and Complier uses IAR. The HW GPIO settings were set using CubeIDE, and were set as follows...

Jdogk_0-1710832727399.png
Jdogk by Associate II
  • 618 Views
  • 0 replies
  • 0 kudos

Resolved! HAL_CAN_RxFifo1MsgPendingCallback has a problem.

HIIf the CAN message ID set to FIFO0 is received, HAL_CAN_RxFifo0MsgPendingCallback will be called correctly.but,HAL_CAN_RxFifo1MsgPendingCallback is not called even if the CAN message ID set in FIFO1 is received.The following is strange.step1Send CA...

Ukazu by Associate III
  • 792 Views
  • 2 replies
  • 0 kudos

Resolved! HAL_CAN_AddTxMessage() contains problems

Hi I am using CAN in STM32F303RDT6.I am using HAL_CAN_AddTxMessage for CAN transmission.This function will send the data and return HAL_OK if the sending mailbox is free.However, although HAL_CAN_AddTxMessage returns HAL_OK, no message may actually b...

Ukazu by Associate III
  • 1264 Views
  • 1 replies
  • 0 kudos

Resolved! HAL_UART_Transmit_IT doesn't transmit

STM32F103Im using HAL_UART_Transmit_IT but doesnt work, if change to HAL_UART_Transmit all works fime but add delays to move in motors. Where are my error? i see all videos on youtb and cant find the problem.I have enabled the IT on MX the priority a...

woutnme by Associate II
  • 1597 Views
  • 6 replies
  • 0 kudos

ethernet ping error

Hi !I use Lwip and FreeRtos Cmsis_v2, I set this config in cubemx, but in ping test ops!what is my mistake?!Thanks.1-sys config   2-ethernet  config3-freertos  4-lwip configphy drive:5- heap and stack6-module schematic7- pc ip4 set8- ping test in cmd...

1.JPG 2.JPG 3.JPG 4.JPG

Need help about startup file

I am trying to write own startup file in c++ till now everything is working but I am having issue when declaring and defining something in the global scope it's most probably related to the static constructor that cpp need but I don't know how to fix...

Asraful by Associate III
  • 488 Views
  • 2 replies
  • 0 kudos

SPI Transmit and Receive in STM32F207ZGT6

int main(void){HAL_Init(); SystemClock_Config(); MX_GPIO_Init();MX_SPI1_Init();MX_USART3_UART_Init();/* USER CODE BEGIN 2 */----> HAL_SPI_Receive_IT(&hspi1, (uint8_t*) &rx_data, sizeof(rx_data));/* USER CODE END 2 */while (1){HAL_SPI_Transmit(&hspi1,...