Sleep current
I am using STM32L010K4. I want to reduce the sleep current to 3uA ,But in the datasheet it is mentioned the the minimum sleep current is 1mA with all the peripherals disabled, which is a larg value
I am using STM32L010K4. I want to reduce the sleep current to 3uA ,But in the datasheet it is mentioned the the minimum sleep current is 1mA with all the peripherals disabled, which is a larg value
Hi,I have my scatter file defined thus:// Scatter fileLR_IROM1 0x08000000 0x00200000 { ; load region size_region ER_IROM1 0x08000000 0x00200000 { ; load address = execution address *.o (RESET, +First) *(InRoot$$Sections) .ANY (+RO) } RW_IRAM2 0x...
For example how can i do this with stm32f030cc?
Hi, I have designed a small project on the STM32F042F6Px MCU, and wrote a piece of software for it. Then I tried to run it outside of the debugger, and realized it won't boot. I've spent many hours on it already, and now I run out of ideas. It looks ...
HiI am trying to configure I2C2 on an STM32F405RG on pins PB10/SCL and PB11/SDA, but I am getting very strange output on SDA. STM32 is I2C master. Using I2C example from STM32F4-Discovery folder.Using 4k7 ohm pull-ups to 3.3V.Is the output pin broken...
#include<stdio.h> #include<stdint.h> #define SCHED_STACK_START 20126976U void init_tasks_stack(void); void task1handler(void); void enable_processor_faults(void); __attribute__((naked)) void init_scheduler_stack(uint32_t sched_top_of_stack); int ...
Using STM32F767 Nucleo board and STMCubeIDE I am trying to transmit SPI data with data size of 8bit per transaction while I have setup my SPI2 in Full Duplex mode.Problem is that although I am able to transmit from MCU and receive on slave side the d...
I am using STM32F407V MCU in our project which has 1MB Flash and 192 KB RAM.I have read about it in the community that it is possible with an external RAM (min 8MB) but I am still not sure about it.Apart from that I would also like to know how to pro...
Hello,currently reading out an ADC sensor with SPI. The goal is to achieve a fast readout. Currently I am at around 200000 readouts per second, but I am wondering if this delay between two LL_SPI_TransmitData16 is because of the LL_SPI_ReceiveData16 ...