下载了一个STM8S Touch Sensing Package,
用原来的例子可以编译通过.
但是自己新建一个项目文件,却无法编译通过.
出错如下:
#error clnk Debug\touchkey.lkf:1 no default placement for segment .TSL_IO_ALCODE
The command: "clnk -l"C:\Program Files\COSMIC\CXSTM8_16K\Lib" -o Debug\touchkey.sm8 -sa -mDebug\touchkey.map Debug\touchkey.lkf " has failed, the returned value is: 1
exit code=1.
源文件里面有说明,
/* This section must be defined in the Linker segment/section at an aligned
address with the -r2 option */
#pragma section (TSL_IO_ALCODE)
但我在IDE设置环境中找不到这个r2选项是如何添加上去的.
在哪里设置的?
|