Hello Scott,
I am sorry for the late reply. I have reproduced your issue on my board. This is because there is a mistake on the configuration of this pin. As you can see in the following snippet, PTD10 shorts with VDD when card is inserted.

However, you will see that in pin_mux.c file the pin has pull-up resistor activated. That is the reason why it detects the card as inserted even if it's not. Please change the configuration as below.
const port_pin_config_t portd10_pinB3_config = {
kPORT_PullDown,
kPORT_FastSlewRate,
kPORT_PassiveFilterDisable,
kPORT_OpenDrainDisable,
kPORT_LowDriveStrength,
kPORT_MuxAsGpio,
kPORT_UnlockRegister};
PORT_SetPinConfig(PORTD, 10U, &portd10_pinB3_config);
I hope it helps!
Have a great day,
Felipe
-------------------------------------------------------------------------------
Note:
- If this post answers your question, please click the "Mark Correct" button. Thank you!
- We are following threads for 7 weeks after the last post, later replies are ignored
Please open a new thread and refer to the closed one, if you have a related question at a later point in time
------------------------------------------------------------------------------