請問您知不知道甚麼是Eclipse plugin?匿名者(希望問問題的MCU diy客能留下名稱,好讓我回覆時不用寫匿名者,感謝喔.) 在QA 中問到以上問題.在這邊提出回覆.
用在哪?還有甚麼是prespective功能?
還有就是LPCXpresso裡面有很多API函式
例如GPIOSetValue,請問哪裡可以找的到說明的文件?感謝您
甚麼是Eclipse plugin?用在哪?
A, 老實說,我也沒研究過Eclipse,所以這問題我幫忙找了一下.如果你研究後有心得再請回來分享給我知.
Eclipse教學及plug-in列表
甚麼是prespective功能?
就資料看來,上圖就是一個 perspective ,一個個紅色框的叫作 view來著. 針對一種目的(develop or debug)集合的views 就是一個 perspective.
LPCXpresso裡面有很多API函式
例如GPIOSetValue,請問哪裡可以找的到說明的文件?
說明就在程式中,舉你問的 GPIOSetValue,
/*****************************************************************************
** Function name: GPIOSetValue
**
** Descriptions: Set/clear a bitvalue in a specific bit position
** in GPIO portX(X is the port number.)
**
** parameters: port num, bit position, bit value
** Returned value: None
**
*****************************************************************************/
static __INLINE void GPIOSetValue( uint32_t portNum, uint32_t bitPosi, uint32_t bitVal )
說明就是
** Descriptions: Set/clear a bitvalue in a specific bit position
** in GPIO portX(X is the port number.)
將指定portX 的某bit 設為High(1) ore Low(0).
這樣 doc. in code 好處是看code就看的到文件,如果是一定要是已pdf/word等文件,目前我是還沒見過.
以上回覆希望能對你有幫助.
感謝您迅速的解答,謝謝喔
回覆刪除iloveTW, (I love Taiwan toooooo)
回覆刪除另外一提,LPCXpresso 是比較簡單的Eclipse 所以不能plugin user interface 請參考連結
(http://knowledgebase.nxp.com/showthread.php?t=12)