User Activity

Hi All,He have an application that requires fast IO's switching. More specifically, we have a 16bit 200Msps parallel DAC and we are targeting to load a waveform from either flash memory or external memory and output the bits for the DAC. Using an FPG...
Hi All, I have noticed that when connecting both of my boards [b-g474e-dpow1, stm32g474ret6u] and [NUCLEO-F429ZI, stm32f429zi] they are recognized as a storage device on windows per the picture below for the b-g474e-dpow1 board. My question is, these...
Hi All,Using an STM32F429 and reading online documentation I have come frequently to this code used for generating delays in Ms if the SYSCLK is 16Mhzvoid delayMs(uint32_t n) { int i; for (; n > 0; n--) for (i = 0; i < 3195; i++) ; }I...