This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

使用IQmath.lib的问题

Other Parts Discussed in Thread: CONTROLSUITE

最近做28069的程序,用到了IQmath.lib中的IQ24sinPU,在CMD文件中设置为以下这样

SECTIONS
{
    ............

   IQmath              : > progRAM      PAGE = 0                  /* Math Code */
   IQmathTables        : > IQTABLES    PAGE = 0, TYPE = NOLOAD   /* Math Tables In ROM */
   ..............
}
连着仿真器调试没有问题,但脱离仿真器后直接上电运行就不工作了,为什么?
若是改为以下方式
SECTIONS
{
    ............

   IQmath              : > FLASHA      PAGE = 0                  /* Math Code */
   IQmathTables        : > IQTABLES    PAGE = 0, TYPE = NOLOAD   /* Math Tables In ROM */
   ..............
}
就没有问题了,这是为什么呢?多谢指教!