How do you write/read from pins Pxx_C ?
For example, when using the HAL drivers to write to a pin you would normally write: HAL_GPIO_WritePin(GPIOA, GPIO_PIN_1, GPIO_PIN_RESET);But, how would you do that using PA1_C, for instance?Thank you.
For example, when using the HAL drivers to write to a pin you would normally write: HAL_GPIO_WritePin(GPIOA, GPIO_PIN_1, GPIO_PIN_RESET);But, how would you do that using PA1_C, for instance?Thank you.
1) Is the STM32 capable of handling multiple audio codecs for audio transmission over USB?2) If so, what development boards would you recommend for getting familiar with it?3) Are there any tutorials for setup? Thanks!!!
I have been using STM32G MCUs with USB PD Sink or Source application. Right now, I want to implement Debug Accessory Mode in either STM32G0 or G4 MCUs with SInk USB PD Application. Hence, i would like to use USB-C cable SBU and Data lines for MCU fla...
IS there anyway i can use 8 PWM channels with RTOS.
In AN3155 the USART STM32 bootloader is described and there is a command “Write Memory�? which can write to any valid memory address i.e. RAM, Flash memory, or option byte area.Is it possible to write the CCM RAM with the bootloader? If yes, which (c...
I have an STM32H745 board and I am trying to use FatFS, SDIO, FreeRTOS and DMA.I know this is a mix fraught with difficulties based on all the posts I have seen and all the things I have tried.I have it working without DMA ... but it is flakey.So I w...
I am using the NUCLEO-L4R5ZI-P development board for testing OTG. My use-case is with OTG is a USB Disk as an MSC device with STM32 as a host and PC as a Host with STM32 as a CDC device.I follow the steps which are given in the user manual of STM32L4...
Hi,I've some trouble with the NUCLEO-L552ZE-Q using USB PD.I'm using the "USB-PD_Consumer_1port" example with STM32CubeMonitor-UCPD and can't request any power profile (see image below). I also tried different power adapters.Did I forget something?Ho...
The code below shows my current attempt to implement a jump to the bootloader:#define ApplicationAddress 0x1FFFC400 void JumpBootloader(void) { typedef void (*pFunction)(void); // defines function pointer for bootloader jump /* Set System...