PN7462 ROM3 functions definition

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

PN7462 ROM3 functions definition

1,272 次查看
julieronday
Contributor II

Hello,

Where can I find a complete definition for the HAL functions mapped in ROM3 ?

I have the NXP NFC reader library including the following HTML file

PN7462AU-FW_v05.22.01_Full\ApiDocumentation\PN7462AU\PN7462AU-FW-apiguide.html

and also UM10913 document but whatever it doesn't give the addresses (I got them from PN7462AU\phCommon\inc\PN7462AU_ROM3.h file but it is not a specification) of the functions neither the parameters specification.

Thank you in advance,

Best regards,

Julie Ronday

标签 (2)
0 项奖励
回复
1 回复

1,194 次查看
IvanRuiz
NXP Employee
NXP Employee

Hi,

They are not functions but defined addresses which are used in other files, e.g. PH_HAL_GPIO_CONFIGOUTPUT_ADDR (0x00007fd9) is used in file phhalGpio.h below:

...

#include "PN7462AU_ROM3.h"
#include "ph_Status.h"

...

#define phhalPcr_ConfigOutput(dwGpioNumber, dwEnableAsOuput, dwSlewRate) \
((phhalPcr_ConfigOutput_t *) \
PH_HAL_GPIO_CONFIGOUTPUT_ADDR)\
(dwGpioNumber, dwEnableAsOuput, dwSlewRate) ‍‍‍‍‍‍‍‍‍‍‍‍‍

Hope this helps.

BR,

Ivan.

0 项奖励
回复