Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: PN532_GPIO PN532_ReadUid EX_encoder_PID_QianYuyangV4
Fork of LibPN532 by
PN532/mac_link.cpp
- Committer:
- zhangyx
- Date:
- 2018-01-15
- Revision:
- 3:685e0bf1409d
- Parent:
- 0:db8030e71f55
File content as of revision 3:685e0bf1409d:
#include "mac_link.h"
#include "PN532_debug.h"
int8_t MACLink::activateAsTarget(uint16_t timeout)
{
pn532.begin();
pn532.SAMConfig();
return pn532.tgInitAsTarget(timeout);
}
bool MACLink::write(const uint8_t *header, uint8_t hlen, const uint8_t *body, uint8_t blen)
{
return pn532.tgSetData(header, hlen, body, blen);
}
int16_t MACLink::read(uint8_t *buf, uint8_t len)
{
return pn532.tgGetData(buf, len);
}
