Roberto Padovani schrieb:
Has anyone ever used the DMA controller with external trigger ? Apparently, I can't configure correctly the port, because I keep getting something which looks like an electrical conflict (voltage at about Vdd/2 )isn't it enough to write P2SEL |= BIT6; ?
you also have to set the P2DIR register correctly, in your case as an input, so clear that bit:
P2DIR &= ~BIT6;
