aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/AVR/pal_lld.c
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/platforms/AVR/pal_lld.c')
-rw-r--r--os/hal/platforms/AVR/pal_lld.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/os/hal/platforms/AVR/pal_lld.c b/os/hal/platforms/AVR/pal_lld.c
index 2f3174934..0676047ac 100644
--- a/os/hal/platforms/AVR/pal_lld.c
+++ b/os/hal/platforms/AVR/pal_lld.c
@@ -85,6 +85,16 @@ void _pal_lld_init(const PALConfig *config) {
PORTE = config->porte.out;
DDRE = config->porte.dir;
#endif
+
+#if defined(PORTF) || defined(__DOXYGEN__)
+ PORTF = config->portf.out;
+ DDRF = config->portf.dir;
+#endif
+
+#if defined(PORTG) || defined(__DOXYGEN__)
+ PORTG = config->portg.out;
+ DDRG = config->portg.dir;
+#endif
}
/**