2017-08-21 75 views
0

我需要對這段代碼的解釋! 我瞭解一些,但在IAR是否有#pragma位置的任何定義?

不夠

#if defined (__ICCARM__) 
#pragma location="ExtQSPIFlashSection" 
#else 
__attribute__((section(".ExtQSPIFlashSection"))) 
#endif 

這是

謝謝反正:)

+0

你對「編譯指示位置」的定義有什麼意義 –

回答

0

#pragma__attribute__(......只是專用於特定的編譯器。有了它們,你可以做到完全一樣 - 將對象放入內存中的特定部分。部分在鏈接描述文件中定義

+0

嗨,謝謝你的答案,我可以看到內存段嗎?您鏈接腳本中的 – Alireza

+0

https://www.iar.com/support/tech-notes/linker/how-do-i-place-a-group-of-functions-or-variables-in-a-specific-section/ –

+0

IAR中的鏈接器腳本在哪裏?格式是什麼? – Alireza

相關問題