123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- #include <stdio.h>
- #include <string.h>
- #include <unistd.h>
- #include "pn532_hi3861.h"
- #include "cmsis_os2.h"
- #include "ohos_init.h"
- #define TASK_STACK_SIZE 1024 * 8
- #define TASK_PRIO 25
- static void ExampleTask(void)
- {
- uint8_t buff[255];
- uint8_t uid[MIFARE_UID_MAX_LENGTH];
- int32_t uid_len = 0;
-
- printf("Hello!\r\n");
- PN532 pn532;
-
- PN532_I2C_Init(&pn532);
- PN532_GetFirmwareVersion(&pn532, buff);
- if (PN532_GetFirmwareVersion(&pn532, buff) == PN532_STATUS_OK) {
- printf("Found PN532 with firmware version: %d.%d\r\n", buff[1], buff[2]);
- } else {
- return -1;
- }
- PN532_SamConfiguration(&pn532);
- printf("Waiting for RFID/NFC card...\r\n");
- while (1)
- {
-
-
-
- uid_len = PN532_ReadPassiveTarget(&pn532, uid, PN532_MIFARE_ISO14443A, 1000);
- if (uid_len == PN532_STATUS_ERROR) {
- printf(".");
- } else {
- printf("Found card with UID: ");
- for (uint8_t i = 0; i < uid_len; i++) {
- printf("%02x ", uid[i]);
- }
- printf("\r\n");
- }
- }
- }
- static void ExampleEntry(void)
- {
- osThreadAttr_t attr;
- attr.name = "ExampleTask";
- attr.attr_bits = 0U;
- attr.cb_mem = NULL;
- attr.cb_size = 0U;
- attr.stack_mem = NULL;
- attr.stack_size = TASK_STACK_SIZE;
- attr.priority = TASK_PRIO;
- if (osThreadNew((osThreadFunc_t)ExampleTask, NULL, &attr) == NULL) {
- printf("Failed to create ExampleTask!\n");
- }
- }
- APP_FEATURE_INIT(ExampleEntry);
|