User Activity

Hi,I'm using an STM32F429 Discovery board and having an issue with the FW_F4_V1.25.2 firmware. I have SPI3 configured as a full-duplex slave (currently used only to send) which sends data out to a Beaglebone as a Master. The Beagle supplies a 16MHz c...
Hi,I've been working with the STM32F429I-Disco board, rev.MB1075C for a while and recently purchased another which I notice is now at revision MC1075E. The code which works fine on the older revision boards fails at the CubeMX generated SystemClock_C...
Hi,I'm writing data to a 24 bit register of an AD5664 DAC from an STM32F429 discovery board which I am using to produce sinewaves and slower sawtooth ramps. The full loop lasts approximately 200000 bytes which gives sufficient resolution over all wav...
Hello,I would like to send a uint32_t size array via HAL_SPI_Transmit / HAL_SPI_Transmit_DMA but both are limited to 16 bit size. I have tried casting as HAL_SPI_Transmit(&hspi1,Array,(uint16_t)65537),10000)but this doesn't work.I have also tried edi...
I am using soft pulse triggering via "__HAL_TIM_ENABLE(&htim1)" but have a problem with the code shown below.HAL_TIM_OnePulse_Start(&htim1, TIM_CHANNEL_1);volatile uint16_t array [300];HAL_Delay(1000);      // let ADC power up      while(1)       {  ...