User Activity

I have a custom PCB with a STM32F429ZIT6 on, I am using CubeMX and STM32CubeIDE.The board generates encoders signals with TIM1 & TIM3 in Output Compare mode.I can scope and see the correct encoder signals being generated by both timers.Then, I also w...
int main(void) { /* USER CODE BEGIN 1 */   /* USER CODE END 1 */   /* MCU Configuration--------------------------------------------------------*/   /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ HAL_Init();...
in main.c int connectionClosed = 0; ... Setup routine of socket ...  while(1){ sin_size = sizeof(struct sockaddr_in); new_socket = lwip_accept(s_create, (struct sockaddr *)&client_addr, &sin_size); if (new_socket > 0){   msgSize = sprin...
Hello STM community,I am developing server/client application.Client is running on Windows 11, using winsock2.h and ws2tcpip.h libraryServer is running on STM32F429ZIT6 - NucleoIf I reset MCU, I have no issue establishing a connection, send & receive...
I am using STM32F429ZIT6 - NucleoI have TIM2 as master in encoder mode generating TRGO on OC3REF to TIM1 & TIM8 slaves in Output compare One pulse mode.I can generate pulses on both Channel 1 of TIM1 & TIM8 but I would like to have a ration:1 of one ...
Kudos given to