Hi,
I got a XMC2Go (XMC1100) and I ran in to a problem. For test purposes I'm just trying to turn on and of a LED, which is working fine with pins like the P0_6 or P0_7.
Using this really basic code:
But If I try the same thing with the P2_7 nothing happens.
What am I doing wrong?
I got a XMC2Go (XMC1100) and I ran in to a problem. For test purposes I'm just trying to turn on and of a LED, which is working fine with pins like the P0_6 or P0_7.
Using this really basic code:
Code:
P0_6_set_mode(OUTPUT_PP_GP);
P0_6_set();
Code:
P2_7_set_mode(OUTPUT_PP_GP);
P2_7_set();