硬汉嵌入式论坛

 找回密码
 立即注册
查看: 847|回复: 2
收起左侧

[IAR] 把函数放到sram里运行

[复制链接]

56

主题

131

回帖

299

积分

高级会员

积分
299
发表于 2022-1-8 16:13:26 | 显示全部楼层 |阅读模式
修改link文件,红色为添加的,求指点,跑不通

/*###ICF### Section handled by ICF editor, don't touch! ****/
/*-Editor annotation file-*/
/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */
/*-Specials-*/
define symbol __ICFEDIT_intvec_start__ = 0x00000000;
/*-Memory Regions-*/
define symbol __ICFEDIT_region_ROM_start__ = 0x00000000;
define symbol __ICFEDIT_region_ROM_end__   = 0x0001FFFF;
define symbol __ICFEDIT_region_RAM_start1__ = 0x20000000;
define symbol __ICFEDIT_region_RAM_end1__   = 0x200003FF;

define symbol __ICFEDIT_region_RAM_start__ = 0x20000400;
define symbol __ICFEDIT_region_RAM_end__   = 0x20001FFF;

/*-Sizes-*/
define symbol __ICFEDIT_size_cstack__ = 0x400;
define symbol __ICFEDIT_size_heap__   = 0x200;
/**** End of ICF editor section. ###ICF###*/

define memory mem with size = 4G;
define region ROM_region   = mem:[from __ICFEDIT_region_ROM_start__   to __ICFEDIT_region_ROM_end__];
define region RAM_region   = mem:[from __ICFEDIT_region_RAM_start__   to __ICFEDIT_region_RAM_end__];
define region RAM2_region   = mem:[from __ICFEDIT_region_RAM_start1__   to __ICFEDIT_region_RAM_end1__];

define block CSTACK    with alignment = 8, size = __ICFEDIT_size_cstack__   { };
define block HEAP      with alignment = 8, size = __ICFEDIT_size_heap__     { };

initialize by copy { readwrite };
initialize by copy { readwrite,section RAMCODE };
do not initialize  { section .noinit };

place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };

place in ROM_region   { readonly };
place in RAM_region   { readwrite,
                        block CSTACK, block HEAP };

place in RAM2_region {section RAMCODE};

export symbol __ICFEDIT_region_RAM_start__;
export symbol __ICFEDIT_region_RAM_end__;


////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

#pragma location = "RAMCODE"
/*!
    \brief      this function handles timer2 interrupt request.
    \param[in]  none
    \param[out] none
    \retval     none
*/
void TIMER2_IRQHandler(void)
{
         if(SET == timer_interrupt_flag_get(TIMER2)){
                  timer_interrupt_flag_clear(TIMER2);/*clear interrupt flag*/
                        timer_enable(TIMER2);
         }
}



回复

使用道具 举报

1万

主题

6万

回帖

10万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
106913
QQ
发表于 2022-1-8 17:04:16 | 显示全部楼层
回复

使用道具 举报

56

主题

131

回帖

299

积分

高级会员

积分
299
 楼主| 发表于 2022-1-10 15:53:54 | 显示全部楼层
eric2013 发表于 2022-1-8 17:04
https://www.iar.com/knowledge/su ... ide-ewarm-5.x--6.x/
函数前加上前缀 __ramfunc

感谢!!!网上说这种方法要把函数里调用到的子函数也有定义到ramz执行,不然效率很低。然后说到使用另外一种方法,就是我提问的那种方式的,但不知道哪里错了
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|小黑屋|Archiver|手机版|硬汉嵌入式论坛

GMT+8, 2024-5-10 05:00 , Processed in 0.239793 second(s), 28 queries .

Powered by Discuz! X3.4 Licensed

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表