PN7462 ROM3 functions definition

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

PN7462 ROM3 functions definition

635件の閲覧回数
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 返信

557件の閲覧回数
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 件の賞賛