Hi Christopher Burg,
Yes, you are right, PE component can't select two component with the same pin.
But if in your Bluetooth you just want to control pin PTC3, you totally don't need to use the component.
You can configure the PTC3 pin as GPIO, and set it to the output, then you can use your

About the PTC3 initialization with register.
SIM_SCGC5 |= SIM_SCGC5_PORTC_MASK;// enable port C clock gate
PORTC_PCR5 &= 0xFFFFF0FF;
PORTC_PCR5 |= PORT_PCR_MUX(1) | PORT_PE_MASK|PORT_PS_MASK;
Wish it helps you!
If you still have question about it, please kindly let me know.
Have a great day,
Kerry
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------