How COSMIC compiler allows code to run in RAM

Publisher:lxy64420245Latest update time:2021-02-28 Source: eefocusKeywords:COSMIC Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere

Introduction: For block programming of STM8 MCU Flash, the code must be run in Ram memory. Therefore, the code stored in Flash must be copied to Ram for compilation, linking, and running. Cosmic compiler has two implementation methods: creating segments in STVD project and creating memory segments in link file.

1. Create a segment in the STVD project


1) Set the segment name in the project


'project'->'settings'->'linker'->'category'->'input', as shown below:


Set the segment name to '.FLASH_CODE'. Note that options should also be set to '-ic'. The meaning of ic is moveable code.


2) Write the code stored in the FLASH_CODE segment as shown below


#pragma section(FLASH_CODE) //Put the code in the FLASH_CODE section


void writeFlash(void)


{


……


}




void eraseFlash(void)


{


……


}


#pragma section()//code is placed in the default section


2. Create a memory segment in the link file


1) Define a special memory segment in the link file (*.lkf) and mark it with '-ic', as shown below:



2) Write the code stored in the FLASH_CODE segment as shown below


#pragma section(FLASH_CODE) //Put the code in the FLASH_CODE section


void writeFlash(void)


{


……


}




void eraseFlash(void)


{


……


}


#pragma section()//code is placed in the default section


3. You can check whether the settings of the above two methods are correct in the generated map file, as shown in the following map file:



The part marked 'from' is the code storage part, and the part marked 'initialized' is the execution code part.


4. Calling functions


Before calling these functions, the codes must be copied from flash to Ram. The cosmic compiler uses the built-in function 'int _fctcpy(char name)' to implement this function. Name is the first letter of the defined segment name, such as 'F' in this example.


void main(void)


{


……


_fctcpy('F'); //Copy the Flash code to Ram


……


}


Keywords:COSMIC Reference address:How COSMIC compiler allows code to run in RAM

Previous article:The principle of capacitive touch in induction cooker
Next article:Points to note when switching clock sources in STM8S MCU low-power applications

Latest Microcontroller Articles
  • Download from the Internet--ARM Getting Started Notes
    A brief introduction: From today on, the ARM notebook of the rookie is open, and it can be regarded as a place to store these notes. Why publish it? Maybe you are interested in it. In fact, the reason for these notes is ...
  • Learn ARM development(22)
    Turning off and on interrupts Interrupts are an efficient dialogue mechanism, but sometimes you don't want to interrupt the program while it is running. For example, when you are printing something, the program suddenly interrupts and another ...
  • Learn ARM development(21)
    First, declare the task pointer, because it will be used later. Task pointer volatile TASK_TCB* volatile g_pCurrentTask = NULL;volatile TASK_TCB* vol ...
  • Learn ARM development(20)
    With the previous Tick interrupt, the basic task switching conditions are ready. However, this "easterly" is also difficult to understand. Only through continuous practice can we understand it. ...
  • Learn ARM development(19)
    After many days of hard work, I finally got the interrupt working. But in order to allow RTOS to use timer interrupts, what kind of interrupts can be implemented in S3C44B0? There are two methods in S3C44B0. ...
  • Learn ARM development(14)
  • Learn ARM development(15)
  • Learn ARM development(16)
  • Learn ARM development(17)
Change More Related Popular Components

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

About Us Customer Service Contact Information Datasheet Sitemap LatestNews


Room 1530, 15th Floor, Building B, No.18 Zhongguancun Street, Haidian District, Beijing, Postal Code: 100190 China Telephone: 008610 8235 0740

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号