各位好,
我使用了 MSP-EXP430LP 搭配 DLP-7970ABP 的硬體,韌體則以CCS搭配在這帖中的程式,透過NFCLink使用正常。
但main.c中只能看到下列程式,而Application()函式也包起來了,看不到如何運作。
#include "application.h"
#include "hardware.h"
#include "MSP430_hardware.h"
int blink() {
crBegin
LED_TEST_BLINK_POUT ^= LED_TEST_BLINK_BIT;
crWaitms(500);
crFinish
}
int main(void) {
Application::init();
LED_TEST_BLINK_PDIR |= LED_TEST_BLINK_BIT;
while(1)
{
Application::run();
blink();
}
}
若是我想要搭配nfclinklib.lib讓MCU做如下圖的程序,請問我該如何開始呢?
這些程序包含:
1. Configure COM port (這步驟可以省略)
2. Start NFC
3. Select ISO 14443A mode.
4. Start Card Emulation.
5. Stop Card Emulation.
感謝。
另外請問,有關NFC的問題一樣是po在這一區嗎?因為我找不到NFC的分類。
KJ
