User Activity

I want pass UART_HandleTypeDef *my_huart at function HAL_UART_Transmit and and mange the response with interrupt. The code is show below but doesn't work. Can you help me?//This is myfile.cvoid myfunc(UART_HandleTypeDef *my_huart){ char command[] ...
Hi all,I'm trying to figure out how to handle an interrupt. In particular I would like to handle an interrupt without using the HAL library. I want to handle the uart interrupt in reception: RXNEIE enabled: when the data is received an interrupt occo...
Board: STM32 NUCLEO F103RB (MB1136 C-01)Wire cable with ESP8266: UART1_tx (PA9) -> RX_ESP8266 and UART1_rx (PA10) -> TX_ESP8266Hi all,I try to send AT command between board and ESP8266, without success.I send the command but I don't see no reply. The...
Board: NUCLEO STM32F103RB - MB1136 C-01Hi all,I try read, trought ADC1_IN0 (pin PA0) , the temperauture value from LM35, but read wrong value.LM35: connected at 5V, GND and A0. ADC1_IN0: work at 8 MHz with voltage reference of 3.3V and 12 bit of reso...
This is the code: /* USER CODE BEGIN WHILE */ while (1) { HAL_GPIO_WritePin(GPIOA , LED_Pin, GPIO_PIN_SET); HAL_Delay(10); HAL_GPIO_WritePin(GPIOA , LED_Pin, GPIO_PIN_RESET); HAL_Delay(10); char p[] = "128"; HAL_UART_Transmit(&huart2, (uint...