diff --git a/avrpins.h b/avrpins.h index fcf12a28..99e10776 100644 --- a/avrpins.h +++ b/avrpins.h @@ -52,6 +52,9 @@ e-mail : support@circuitsathome.com #ifdef PORTK #define USE_PORTK #endif +#ifdef PORTL +#define USE_PORTL +#endif #ifdef PORTQ #define USE_PORTQ #endif @@ -137,6 +140,9 @@ MAKE_PORT(PORTJ, DDRJ, PINJ, Portj, 'J') #ifdef USE_PORTK MAKE_PORT(PORTK, DDRK, PINK, Portk, 'K') #endif +#ifdef USE_PORTL +MAKE_PORT(PORTL, DDRL, PINL, Portl, 'L') +#endif #ifdef USE_PORTQ MAKE_PORT(PORTQ, DDRQ, PINQ, Portq, 'Q') #endif @@ -320,6 +326,17 @@ typedef TPin Pk6; typedef TPin Pk7; #endif +#ifdef USE_PORTL +typedef TPin Pl0; +typedef TPin Pl1; +typedef TPin Pl2; +typedef TPin Pl3; +typedef TPin Pl4; +typedef TPin Pl5; +typedef TPin Pl6; +typedef TPin Pl7; +#endif + #ifdef USE_PORTQ typedef TPin Pq0; typedef TPin Pq1;