aboutsummaryrefslogtreecommitdiff
path: root/ports/stm32f4/src/port.h
diff options
context:
space:
mode:
Diffstat (limited to 'ports/stm32f4/src/port.h')
-rw-r--r--ports/stm32f4/src/port.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/ports/stm32f4/src/port.h b/ports/stm32f4/src/port.h
new file mode 100644
index 0000000..cb55268
--- /dev/null
+++ b/ports/stm32f4/src/port.h
@@ -0,0 +1,15 @@
+/**
+ *
+ * @brief Port specific includes go in this file
+ *
+*/
+
+#ifndef __PORT_H
+#define __PORT_H
+
+#include "stm32f4xx_hal.h"
+
+#define led_Pin GPIO_PIN_13
+#define led_GPIO_Port GPIOC
+
+#endif