Estoy desconcertado ... Simplemente estoy tratando de manipular directamente los puertos en los puertos F y K.
// First Set the port data direction registers as "outs"
DDRF = B11111111; // GREEN LEDS - "ARMED"
DDRK = B11111111; // YELLOW LEDS - DISARMED OFF HOOK"
DDRL = B11111111; // RED - "ON HOOK"
//Then drive alternating pins High/Low
PORTF = B01010101;
PORTK = B01010101;
PORTL = B01010101;
El puerto L funciona bien, los otros dos "sin alegría".
¿Alguna idea?