1

使用 uvision IDE 进行 STM32 开发,我想让一些定时器变量在启动时不初始化。我努力了:

volatile unsigned int system_time __attribute__((section(".noinit")));

__attribute__((zero_init)) volatile int system_timer;

但似乎没有任何效果。根据其他地方的提示,我还在 options/target/IRAM1 中检查了 NoInit。尽管如此,变量在重置后仍设置为零。

有人可以帮忙吗?

4

2 回答 2

4

您需要按照以下步骤操作。如下声明您的变量:

volatile unsigned int system_time __attribute__((section(".noinit"),zero_init));

然后,您必须使用分散文件来声明具有 NOINIT 属性的执行部分,并将其与链接器一起使用。示例分散文件:

LR_IROM1 0x08000000 0x00080000  {    ; load region size_region
   ER_IROM1 0x08000000 0x00080000  {  ; load address = execution address
      *.o (RESET, +First)
      *(InRoot$$Sections)
      .ANY (+RO)
   }
   RW_IRAM1 0x20000000 UNINIT 0x00000100  { ;no init section
      *(.noinit)
   }
   RW_IRAM2 0x20000100 0x0000FFF0  {                ;all other rw data
      .ANY(+RW +ZI)
   }
}
于 2014-03-14T14:13:53.833 回答
3

您必须从 .MAP 文件中检查该变量的地址并使用at关键字

允许您在 C 源文件中指定未初始化变量的地址。这

下面的例子演示了如何使用at关键字定位几个不同的变量类型。例如......

struct link  {
  struct link idata *next;
  char        code  *test;
};

struct link idata list _at_ 0x40;     /* list at idata 0x40 */
char xdata text[256]   _at_ 0xE000;   /* array at xdata 0xE000 */
int xdata i1           _at_ 0x8000;   /* int at xdata 0x8000 */
char far ftext[256]    _at_ 0x02E000; /* array at xdata 0x03E000 */

void main ( void ) {
  link.next = (void *) 0;
  i1        = 0x1234;
  text [0]  = 'a';
  ftext[0]  = 'f';
}

我希望它有助于解决您的问题。

于 2012-07-24T07:34:53.580 回答