STM32G0CUBE DMA HAL DRIVER FILE PROBLEM
In 'STM32G0xx_HAL_Driver\Src\stm32g0xx_hal_dma.c', Line 1032, 'hdma->DMAmuxChannelStatusMask = 1UL << (channel_number & 0x1cU)' , why the channel number is anded with 0x1C? shouldn't that be anded with 0x7f?
In 'STM32G0xx_HAL_Driver\Src\stm32g0xx_hal_dma.c', Line 1032, 'hdma->DMAmuxChannelStatusMask = 1UL << (channel_number & 0x1cU)' , why the channel number is anded with 0x1C? shouldn't that be anded with 0x7f?
Hi,It seems a recent update from Windows introduced a driver problem with the Joystick demo code (I'm running it on a STM3210B-EVAL evaluation board). After some investigation, I linked it to a wrong driver being installed when I connect the board (s...
I am trying to receive raw ethernet frames on my STM32F746G and i want to wait for their arrival and filter them by etherType.In the reference manual only filtering by Source or Destination address is possible and i don't seem to understand where to ...
Hi everyone, when I used STM32CubeMX to generate initial code and would like to use HAL library of HAL_I2S_Transmit_DMA to transmit data to device, I didn't get any signal output from all pins Have someone meet this problem? Could you please give som...
hy,I would like to use your NUCLEO-F446RE board platform with X-NUCLEO-CCA01M1 and X-NUCLEO-CCA02M1 expansion board, using the FP-AUD-SMARTMIC1 software.In reality we have a configuration like the figure in the annexwhere external codecs are not used...
Hi.Need's an example LIN communication program via UART (LIN mode) using HAL for STM32F1.Thank's
Hi guys.I have a problem with this hal function.The problem is that every time I use this function the first byte received is not what I transfer to it.For example when I send AT (ESP8266 AT command) to the module it must return AT OK,but every time(...
Hello,I am trying to send data periodically as a client in MCU.I am using program called SocketTest v 3.0.0 from PC.Connection is OK but I can't see other values.These are my codes.---------------------in main.c------------------------ #include "m...
Hello, i want to start an ADC in DMA Mode, but everytime i run HAL_ADC_Start_DMA the MCU stops.Here is the section of my code where it happens: if(newpwmperiod == 1 && adc_dma_status == 0){ HAL_UART_Transmit(&huart2, test, 4, HAL_MAX_DELAY); ...
I am using stm32f205ret. I want to toggle as fast as possible. According to the data sheet i should be able to do it at 60 MHZ. I use cubeMX to initialize my code. I basically set all clocks to max. I set one pin (gpio port C pin 5) as GPIO_OUTPUT. I...