I am using the STM IoT Kit Node and have a current sensor (voltage output) connected to the ADC.I can read the current through the ADC by reading the counts and doing the correct conversion. But I'm trying to read the instantaneous peak current (the...
I am using the NUCLEO-144 (STM32H743ZI) board. It contains the following memory regions:DTCMRAM (xrw) : ORIGIN = 0x20000000, LENGTH = 128KRAM_D1 (xrw) : ORIGIN = 0x24000000, LENGTH = 512KRAM_D2 (xrw) : ORIGIN = 0x30000000, LENGTH = 288KRAM_D3 ...
In H7 , RAM_D2 have 288KB size memory domain. Currently i'm looking to split this domain memory into two areas as below,MEMORY { RAM_INT : ORIGIN = 0x20000000, LENGTH = 128K RAM_D1 : ORIGIN = 0x24000000, LENGTH = 512K RAM_D2 : ORIGIN = 0x300000...
HI ,I am working with low power modes on STM32L475. The device doesn't wake up from STOP2 mode, I am keeping the x-cubel4 examples as referenceen.stm32cubel4\STM32Cube_FW_L4_V1.14.0\Projects\NUCLEO-L476RG\Examples\PWR\PWR_STOP2_RTC.My LED doesn't tu...
Hi, I'm trying to do a read and write to an FMC, SRAM Bank 1, NE1. However, it does not work.STM32CubeMX was used to create the setup.The SRAM setup:static void MX_FMC_Init(void) { FMC_NORSRAM_TimingTypeDef Timing = {0}; /** Perform the SRAM1...
I have multiple boards with a STM32L051 MCU and 2 board revision, A and B.A: no LSE oscillator, LED connected via 550 Ohm resistor, around 20uF capacitance on VCC, radio module solderedB: 6pF 32kHz +-20 ppm oscillator soldered, 9pF load capacitors, a...
how to wake from standby mode using RTC 1 min alarm for stm32f030k6t6I got up to stand by code with external wakeup pin interrupt but i dont know how to wake from RTC 1 mins alarm wake up pls any one can help on thismy sample code isint main(void){HA...
Hi I am using stmh7 nucleo board and trying the spi dma example in NUCLEO-H743ZI folder, but thr transfer only gives me 0 in the aRxBuffer, anyone has had this problem before? I am not sure how to solve thisThanks!
Hello, I am creating a Li-ion battery discharger. Only thing left is temperature control loop right now and I want to use PID for that purpose. I want to keep the temperature inside the device at max 95 Celsius. I am using PWM to set the discharging ...