need LIN protocol Program or LIBRARY
i using stm32f103rb in my project LIN protocol is using, I dont know st LIN anybody help me
i using stm32f103rb in my project LIN protocol is using, I dont know st LIN anybody help me
Posted on June 13, 2018 at 10:42STM32CubeMx 4.26.0 RTC Reset always during INITThe generated Codevoid MX_RTC_Init(void){ RTC_TimeTypeDef sTime; RTC_DateTypeDef sDate;/**Initialize RTC Only */ hrtc.Instance = RTC; hrtc.Init.HourFormat = RTC_HOURFORM...
For the Board-STM32 NUCLEO-F412ZG doesn't contain the configuration file inside OpenOCD debugger script/board and inside target/stm32f4x.cfg no description about the stm32f412zg.PFA for the config. fileSource link for 64-bit - https://github.com/gnu-...
Hello,I have a project configured by cubeMX with a STM32L476 nucleo board.I have the following SPI configuration function:/* SPI2 init function */ void MX_SPI2_Init(void) { LL_SPI_InitTypeDef SPI_InitStruct = {0}; LL_GPIO_InitTypeDef GPIO_InitS...
Is the RQCPx set at the end of the EOF duration, or IFS duration? The reference manual state diagram shows Bus Idle as the point when RQCP is set, but exactly when Bus idle is determined and the RQCP bit set is not clear.The issue has to do with usi...
I have some code like belowwhile (1) { HAL_GPIO_WritePin(LED_1_GPIO_Port, LED_1_Pin, GPIO_PIN_SET); HAL_Delay(1000); HAL_GPIO_WritePin(LED_1_GPIO_Port, LED_1_Pin, GPIO_PIN_RESET); HAL_RTCEx_DeactivateWakeUpTimer(&hrtc);...
My current project uses "en.stm32f4_dsp_stdperiph_lib", version 1.60, which implements the finished product function using standard library. Since stemwin GUI was added to use Mipi lcd, I found only a simple DSI example in the standard library.Does S...
Posted on September 16, 2017 at 08:41Hi All,I am trying to interface a digital(I2C) pressure sensor with STM32F051R8T6(STM32F0 Discovery board). I basically want to read data from the sensor and display it on a serial terminal software(USB to TTL co...
I'm programming a L432KC Nucleo using STM32CubeMx. When a certain condition is given in my program I want the controller to reset itself instead of pushing the external reset button. For example,if ( x == 5){ \\reset the controller }Is there a way of...