Resolved! What is STM32F101VC actual RAM size?
Hello,By documentation STM32F101VC has 32KB RAM, we notice that our project use 44KB of RAM more than 2 years without any issues. What is real RAM size and why in documentation is only 32KB?
Ask questions, find answers, and share insights on STM32 products and their technical features.
Hello,By documentation STM32F101VC has 32KB RAM, we notice that our project use 44KB of RAM more than 2 years without any issues. What is real RAM size and why in documentation is only 32KB?
HAL_Delay (500); fresult = f_mount(&fs, "/", 1); if (fresult != FR_OK) Serial_PutString ("ERROR!!! in mounting SD CARD...\n\n"); else { Serial_PutString("\n\r SD CARD mounted successfully...\n\n"); fresult = f_open (&fil, "zephyr_20210506_nbi...
Hi!So I configured my SPI to work with DMA and with external CS. Before my main loop I set CS high, and everytime before I initialize communication on SPI with DMA i set CS low. Then, after communication is done I go to interrupt on that event and se...
Hi ST team,I want to define a new section in the ld script so I can use that for variables that have to keep their values in case of soft resets.I have made some changes in the script as follows, .noinit (NOLOAD): { . = ALIGN(4); _noinit = .; ...
#include "i2c-lcd.h" extern I2C_HandleTypeDef hi2c1; // change your handler here accordingly #define SLAVE_ADDRESS_LCD 0x4E // change this according to ur setup long ErrCnt_ERR=0; long ErrCnt_Tout=0; long ErrCnt_Busy=0; HAL_St...
HELLO EVERYONEI run my micro in IAP Mode then load other program to him with uart1 . in this program I start UART with DMA and toggle one Pin . when the circuit start working , everything work well and pin is toggle but the UART DMA send out zero. V...
Hello again. I'm having this problem with I2C with the STM32F303RE.I have this array of data I want to send via I2C to a sensor.std::uint8_t conf_bytes[2] = {0xF4, 0x03}; periph::I2C::write_data(I2C1, BME_ADDR, 2U, conf_bytes); BME_ADDR is the addr...
HiI have my own board, with STM32L053C8T6TR. And I set clock and program failed here: while (LL_RCC_HSE_IsReady ()! = 1) {};void SystemClock_Config(void) { LL_APB1_GRP1_EnableClock(LL_APB1_GRP1_PERIPH_PWR); // clock pro PWR controller LL_PW...
When use G Series MCUs to implement an quadrature encoder interface.i can't select Slave mode(Reset mode) while selected the Encoder Mode.:sad_but_relieved_face:
Hello, guys. Bought and STM32 board, tried to upload .hex file on it from ST-Link Utility, but when tried to connect board, received "No ST-LINK detected!". Checked in Device Manager - board appear as Mass Storage device(No ST-Link Debug, just storag...