Browse Source

update applications/main.c

liuhy 3 years ago
parent
commit
870f82190a

+ 2 - 1
bsp/essemi/es32f0654/applications/main.c

@@ -10,8 +10,9 @@
 
 #include <rtthread.h>
 #include <rtdevice.h>
+#include "drv_gpio.h"
 
-#define LED_PIN 39
+#define LED_PIN    GET_PIN( C , 8 )
 
 int main(void)
 {

+ 3 - 2
bsp/essemi/es32f369x/applications/main.c

@@ -10,13 +10,14 @@
 
 #include <rtthread.h>
 #include <rtdevice.h>
+#include "drv_gpio.h"
 
-#define LED_PIN 18
+#define LED_PIN    GET_PIN( F , 0 )
 
 int main(void)
 {
     int count = 1;
-    /* set PF00 pin mode to output */
+    /* set pin mode to output */
     rt_pin_mode(LED_PIN, PIN_MODE_OUTPUT);
 
     while (count++)