Resolved! USBPD EPR mode
I have tried setup STM32G071 Sink port and connected with Apple 140w. I want to request 140W but it's seem STM32 not yet supported EPR mode in PD core. Do you have any examples for EPR in STM32?
Ask questions, find answers, and share insights on STM32 products and their technical features.
I have tried setup STM32G071 Sink port and connected with Apple 140w. I want to request 140W but it's seem STM32 not yet supported EPR mode in PD core. Do you have any examples for EPR in STM32?
Posted on March 12, 2015 at 14:34I have problems with my IAR and ST-LINK debugger tool. As soon as I start the debugger, the SPI clock (STM32F103R8 SPI1 at PB3) stops. I use the ST-LINK over SWD. What could I have done wrong? #spi-st-link
Hello all, I'm working on a custom PCB using the L072RZT6. I want to convert pins PB6 & PB7 from an I2C assignment to GPIO_EXTI during run time. Is that possible with HAL_I2C_DeInit?Currently, the board goes through the pre-generated startup process ...
Hello everybody,i am having trouble determining the wakeup source after power cycling and i can not figure out why this is.Simple test case:I am using the NUCLEO-L496ZG->Examples->PWR->PWR_SHUTDOWN example as a base.The example was slightly modified ...
hello, sd card write on f469 discovery is working. and now referring to msc_standalone example (which works alone), usbd_storage_if.c file is matched and usb mass storage selected from MX tool. But i cant see the drive coming. can i know steps have ...
while (1) { if (DmaRecHalfBuffCplt == 1) { /* Store values on Play buff */ for (int i = 0; i < 1024; i++) { PlayBuff[2 * i] = (int16_t) SaturaLH((RecBuff[i] >> 8), -32768, 32767); PlayBuff[(2 * i) + 1] = PlayBuff[2 * i]; } HAL_UART_Transmit_DMA(&huar...
Hi Sir/Madam,I want to implement a vibration detector using stm32f401vc discovery board which mainly consists of LSM303dlhc mems accelerometer sensor.The problem here is that when I am extracting the data from the sensor ,mostly the data is fluctuati...
I'm trying to read data from my I2C sensor, the MLX90614 sensor, using a STM32F411CEU6. When I examined the MLX90614 datasheet, I saw that the I2C clock speed should be a maximum of 100kHz and I configured the clock accordingly. However, after the st...
while (1){/* USER CODE END WHILE */if (HAL_UART_Receive(&huart2, data, 10, 100) == HAL_OK) { HAL_GPIO_WritePin(GPIOB, GPIO_PIN_3, 1);HAL_Delay(200);HAL_GPIO_WritePin(GPIOB, GPIO_PIN_3, 0);HAL_Delay(200);}/* USER CODE BEGIN 3 */} This is my code to ch...
Hello,I'm a bit confused to how use the VREFBUF on this MCU.I want to use the internal voltage reference (SCALE 0 : 2.5V) for better ADC accuracy.Do I have to connect the VREF+ pin (20) to AVDD (+3.3V) or I've to connect it to a 1uF + 100nF capacitor...