How to enable FRS using Dock SDK??

Announcements

Live Webinar: USB-C adoption. Simple & Cost-efficient solutions | April 18th @9am or 5pm CEST. Register now !

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Ivan_Lee
Level 5
Level 5
Distributor - Zenitron(GC)
100 replies posted 5 likes given 100 sign-ins

How to enable FRS using Dock SDK??

0 Likes
1 Solution
Ivan_Lee
Level 5
Level 5
Distributor - Zenitron(GC)
100 replies posted 5 likes given 100 sign-ins

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

View solution in original post

0 Likes
3 Replies
ShifangZ_26
Moderator
Moderator
Moderator
10 likes given 250 sign-ins 1000 replies posted

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

Ivan_Lee
Level 5
Level 5
Distributor - Zenitron(GC)
100 replies posted 5 likes given 100 sign-ins

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

0 Likes
Ivan_Lee
Level 5
Level 5
Distributor - Zenitron(GC)
100 replies posted 5 likes given 100 sign-ins

it can send out FRS packet now. thanks.

0 Likes