Hi,
NSS signal is Chip select of SPI, The SPI interface of Host should have this signal, such as CS; BUSY signal is used to tell Host if PN5180 is busy, if not, Host can send data, otherwise, host must wait until PN5180 is not busy. Here BUSY means PN5180 is handling data, can't be interrupted.
You can refer to PN5180 datasheet and will know how to handle NSS and BUSY, see page 15 :
--------------------------------------------------
Both master and slave devices must operate with the same timing. The master device
always places data on the MOSI line a half cycle before the clock edge SCK, in order for
the slave device to latch the data.
The BUSY line is used to indicate if the system is BUSY and cannot receive any data from
a host. Recommendation for the BUSY line handling by the host:
1. Assert NSS to Low
2. Perform Data Exchange
3. Wait until BUSY is high
4. Deassert NSS
5. Wait until BUSY is low
----------------------------------------------------
Regards,
Weidong