Posted on January 21, 2016 at 14:43CubeMx 4.12.0 Mcu: STM32L476RETx Fimware Package: L4V1.2.0 -Cube is generating code for port H, but there's no port H on the L476RET /*Configure GPIO pins : PH0 PH1 */ GPIO_InitStruct.Pin = GPIO_PIN_0 | GPIO_PI...
Posted on October 08, 2015 at 13:07According the datasheet of the L476rx on page 187;3. No external termination series resistors are required on USB_DP (D+) and USB_DM (D-); the matching impedance is already included in the embedded driver. If I u...
Posted on September 17, 2015 at 15:47Hope that this is the correct forum section for my question. I have some strange problems with my IME002V1 evaluation kit. When I change some register settings in the Eden application and press write all register...
Posted on May 15, 2015 at 21:50 In Coocox the compiler will gray out the unused preprocessor code, is very handy. Can't find this option in Keil uvision 5, how do you guys do that?
Posted on September 12, 2016 at 13:53You need to read back trough the shadow register or set BYPSHAD (bypass shadow register) bit in the RTC_CR register.
Posted on September 12, 2016 at 11:12
This is how CubeMx does it:
First make the pins low, then setup for output.
static void MX_GPIO_Init(void)
{
GPIO_InitTypeDef GPIO_InitStruct;
/* GPIO Ports Clock Enable */
__HAL_RCC_GPIOB...
Posted on August 30, 2016 at 14:41Depends on your application. With the SPWF01SA you need also an extra cpu. I prefer the Esp8266, with Arduino ide you have it up and running in 10 minutes. And also important there's a big community out there who ca...