HiWe are trying to communicate between an F407 Discovery using SPL's CAN implementation and F756 Nucleo running HAL's CAN implementation.Here is the calculation for time quanta and Baud rate...Baudrate = 1 / Nominal Bit TimeNominal Bit Time = 1 x Tq...
I could locate the HAL_NVIC_SetPriority() calls for DMA and EXT1 Interrupts in main.c as shown below.I could not find the HAL_NVIC_SetPriority() calls for RTC, USART & Timers - TIM4, TIM5, TIM6, TIM7. Where is the interrupt priority for these periph...
helloi'm having a question. why gpioX boundary address(range) is 1kb ???according to datasheet, GPIOA's boundary address is 0x4002 0000 - 0x4002 03FF.but offset for register to be set is 0x00 - 0x24. i think that using 1kb to cover that range is inef...
I have STM32F103T6Ux. I'm trying to communicate with the built-in bootloader, so we can do software update via UART. I'm setting BOOT0 pin high and it seems the system is in bootloader, since our normal code doesn't come up. I'm setting my side of UA...
NUCLEO-H723ZG dev. kit.I need take over the full control of the USARTx. I need a TX interrupt and the RX interrupt handled manually independently the HAL_UART_*** functions. The HAL_UART_Receive_IT() and the HAL_UART_Transmit_IT() is useless for me. ...
I'm working with the Nucleo-64 development board with an STM32L476 microcontroller. I wish to receive data over I2C using DMA with the function HAL_I2C_Master_Receive_DMA. However, to use that function I need to specify the parameter Size, and I don'...