- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to enable FRS using Dock SDK??
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi, Lisa,
I enable below setting and trigger it by rising plus.
but i didn't see any CC packet sending.
#define CCG_FRS_TX_ENABLE (1u)
#define APP_FRS_TX_GPIO_PORT_PIN_P1 GPIO_PORT_2_PIN_5 // Pin#20
BR
Ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Ivan,
1. The marco define in the SDK should be enabled.
/*******************************************************************************
* Enable PD spec Rev 3 support
******************************************************************************/
#define CCG_PD_REV3_ENABLE (1u)
#define CCG_FRS_RX_ENABLE (0u)
#define CCG_FRS_TX_ENABLE (0u)
>> The TX and RX should be enabled as per your requirements.
2. And you also need make a rising plus with Pin#20 if you are designing a FRS TX.
Best Regards,
Lisa
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi, Lisa,
I enable below setting and trigger it by rising plus.
but i didn't see any CC packet sending.
#define CCG_FRS_TX_ENABLE (1u)
#define APP_FRS_TX_GPIO_PORT_PIN_P1 GPIO_PORT_2_PIN_5 // Pin#20
BR
Ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
it can send out FRS packet now. thanks.