資源描述:
《iarmsp430編譯報(bào)錯(cuò)說明》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在應(yīng)用文檔-天天文庫。
1、IARMSP430編譯報(bào)錯(cuò)說明無編號(hào)警告類型:1、SatJun23,201217:41:05:Thestackpointerforstack'Stack'(currentlyMemory:0xF5336)is原因:http://blog.sina.com.cn/s/blog_4c0cb1c0010153l9.html????IAR相關(guān)設(shè)置:Tools->Option->Stack->Warnwhenstackpointerisoutofbounds.?2、無法查看結(jié)構(gòu)體/共同體/聯(lián)合體變量[Syntaxerror,unexpected$end,expectingCOLON2
2、]column1??struct??drpoint??{?????uint16x;?????uint16y;???}drpoint[10];?改成:??struct????{?????uint16x;?????uint16y;???}drpoint[10];?參考:http://tech.groups.yahoo.com/group/lpc2000/messages/34213?threaded=1&m=e&var=1&tidx=1?UESTC2012.12?IAR各版本BUG錯(cuò)誤修正歷史:ftp://efo-6.ip.peterstar.net/pub/efo-ftp/T
3、MP/pub/atmel/_AVR32_MCUs_32bit/Compilers/IAR/IAR_2.20/Installsoftware/EWAVR32-KS-CD-220A/doc/common/doc/CorrectedProblems.pdf有編號(hào)警告類型:?Error[e16]:?Segment?XDATA_Z?(size:0x19a1align:0)istoolongforsegmentdefinition.Atleast0xe4cmorebytesneeded.Theproblemoccurredwhileprocessingthesegmentplaceme
4、ntcommand"-Z(XDATA)XDATA_N,XDATA_Z,XDATA_I=_XDATA_START-_XDATA_END",whereatthemomentofplacementtheavailablememoryrangeswere"XDATA:f1ff-fd53"Reservedrangesrelevanttothisplacement:XDATA:f000-f1feXSTACKXDATA:f1ff-fd53XDATA_NBIT:0-7BREGBIT:80-97SFR_ANBIT:a8-afSFR_ANBIT:b8-c7SFR_ANBIT:d8-dfSFR_
5、ANBIT:e8-efSFR_ANA:其實(shí)這個(gè)問題并不是你的程序本身有問題,主要是因?yàn)槟憔帉懙某绦蛱罅?,超出了芯片本身的定義。今天在群里學(xué)習(xí)了一招,就是將數(shù)組定義到code里,我們看一下例子。我們定義一個(gè)5100個(gè)元素的數(shù)組,有以下兩種方法:mermaid提出的方法是:typedefunsignedcharconst__codeINT8U;externINT8Ushuzi[5100];文晶提出的方法是INT8Ucodeshuzi[5100];這兩種方法其實(shí)效果是一致的,定義完數(shù)組之后,調(diào)用的部分就是需要用指針來調(diào)用數(shù)組里面的數(shù)值了。Error[e16]:?Segment?
6、DATA16_I?(size:0xa80align:0x1)istoolongforsegmentdefinition.Atleast0x27fmorebytesneeded.Thepro××emoccurredwhileprocessingthesegmentplacementcommand"-Z(DATA)DATA16_I,DATA16_Z,DATA16_N,HEAP+_HEAP_SIZE=0200-0A00",whereatthemomentofplacementthe××aila××ememoryrangeswere"CODE:200-A00"經(jīng)過驗(yàn)證是由于RAM耗
7、盡,程序里估計(jì)有很大的數(shù)據(jù)量,最好使用const定義到FLASH里面,問題基本可以解決。Error[e16]:Segment?DATA16_Z?(size:0x6b9align:0x1)istoolongforsegmentdefinition.Atleast0x317morebytesneeded.Theproblemoccurred?whileprocessingthesegmentplacementcommand?"-Z(DATA)DATA16_I,DATA16_Z,DATA16_N,TLS16_I,DATA