User Activity

Here is the configuration I use:int main(void) { HAL_Init(); SystemClock_Config(); MX_GPIO_Init(); MX_ADC1_Init(); MX_TIM2_Init(); // configure PWM __HAL_TIM_SET_AUTORELOAD(&htim2, 1000); __HAL_TIM_SET_COMPARE(&htim2, TIM_CHANNEL_1...
Hi folks,I want to start ADC conversions on 2 regular channels of ADC1 block only after the voltage on one of the channels exceeds a certain limit, hence I'm using a watchdog feature.After the watchdog will be triggered, I need to store 5 consequent ...
Are here any example projects on how AcousticBF library should be configured exactly for PCM mode? There are plenty of examples for PDM mode configuration, but none for PCM, which is frustrating, since the documentation on this library is not very ex...
I'm trying to implement AcousticBF library functions and what I've noticed is that, when I configure it like this for PCM mode, 2 microphones:void Audio_Libraries_Init(void) { volatile uint32_t error_value = 0; /* Enable CRC peripheral to unlock ...
Hi,I want to create a simple device that streams audio from a PC to a loudspeaker via NUCLEO-L476RG board. The connection to a PC is implemented via USB connector on the X-NUCLEO-CCA02M2 board, which is plugged into NUCLEO-L476RG.I've configured the ...