How to create Run-in-RAM code using SDCC?
Hello everyone,Is it possible to create Run-in-RAM code using SDCC? If possible then how to do this?Thanks in advance.
Discuss hardware and software design challenges, including NOR flash storage, OTA updates, component ID, and thermal management.
Hello everyone,Is it possible to create Run-in-RAM code using SDCC? If possible then how to do this?Thanks in advance.
I am currently working on SEE analysis for our product which uses the above stated part. SO I need the following info:Is the part M95M02-DWMN3TP/K is SEE tested? If so,what is the SEE rate or SEU cross sectionWhat is the process technology of this pa...
Hi!I am working with M24LR64E-R in a design (in production) and it works really fine in a non noise enviroment. I am using RF WIP/BUSY pin to inform microcontroller RF BUSY state so as to stop I2C communication.The problem I am facing: RS BUSY pin go...
This bug is several years old and should really be fixed.In stm8s.h, the following line ...#if !defined HSE_Value... should (obviously!) be ...#if !defined HSE_VALUE... in order to allow HSE_VALUE to be defined on the command-line.I just found out th...
I have an issue when I am using STVD with Cosmic to write a value to EEPROM and read it back.Example code :/* MAIN.C file * * Copyright (c) 2002-2005 STMicroelectronics */#include "stm8s.h"#include "stm8s_flash.h"@eeprom unsigned char eeValue;unsign...
Posted on May 22, 2015 at 16:31Hi folks I'm trying to read the (unprotected) contents of the data flash of an STM8L processor via the command line application provided. As this works in the GUI version I assumed I should be able to specify a file to...
CLK_PeripheralClockConfig (CLK_Peripheral_I2C,ENABLE);// Delay(2); I2C_DeInit(); /* I2C Peripheral Enable */ I2C_Cmd(ENABLE); /* Apply I2C configuration after enabling it */ I2C_Init((uint32_t )200000, 0xA0, I2C_DutyCycle_2, I2C_Ack_Enable, I2C_Ack...