CLRC663: Modemoff bit in reader library

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

CLRC663: Modemoff bit in reader library

Jump to solution
654 Views
thehardgamer
Contributor II

Hello everyone, according to the CLRC663 datasheet's page 65, address 00h the 7th bit is standby and 6th one is modemoff bit but in the nfc reader library's Rc663_Reg.h, the standby bit is 0x80U and i can't find the modemoff bit in the header, can any one help?

Tags (2)
0 Kudos
1 Solution
609 Views
KellyLi
NXP TechSupport
NXP TechSupport

Yes, you are right. There is no MACRO for Modemoff bit configuration, but you can call API function (

phStatus_t phhalHw_Rc663_WriteRegister(phhalHw_Rc663_DataParams_t * pDataParams, /**< [In] Pointer to this layer's parameter structure*/
                                                                         uint8_t bAddress,                                                 /**< [In] Register Address. */
                                                                         uint8_t bValue                                                       /**< [In] Register Value. */
                                                                        );
to configurate your application.

View solution in original post

1 Reply
610 Views
KellyLi
NXP TechSupport
NXP TechSupport

Yes, you are right. There is no MACRO for Modemoff bit configuration, but you can call API function (

phStatus_t phhalHw_Rc663_WriteRegister(phhalHw_Rc663_DataParams_t * pDataParams, /**< [In] Pointer to this layer's parameter structure*/
                                                                         uint8_t bAddress,                                                 /**< [In] Register Address. */
                                                                         uint8_t bValue                                                       /**< [In] Register Value. */
                                                                        );
to configurate your application.