浏览代码

增加delay的实现;解决编译warning

增加作者信息
FuChao 3 年之前
父节点
当前提交
dd910a7805
共有 2 个文件被更改,包括 32 次插入1 次删除
  1. 31 0
      bsp/Vango_V85xx/drivers/board.c
  2. 1 1
      bsp/Vango_V85xx/drivers/drv_gpio.c

+ 31 - 0
bsp/Vango_V85xx/drivers/board.c

@@ -6,6 +6,8 @@
  * Change Logs:
  * Date           Author            Notes
  * 2021-01-04     iysheng           first version
+ * 2021-09-07     idk500            suit for Vango V85xx
+ * 2021-09-08     ZhuXW             add delay function
  */
 
 #include <stdint.h>
@@ -75,4 +77,33 @@ void rt_hw_board_init()
 #endif
 }
 
+void rt_hw_us_delay(rt_uint32_t us)
+{
+    rt_uint32_t ticks;
+    rt_uint32_t told, tnow, tcnt = 0;
+    rt_uint32_t reload = SysTick->LOAD;
+
+    ticks = us * reload / (1000000 / RT_TICK_PER_SECOND);
+    told = SysTick->VAL;
+    while (1)
+    {
+        tnow = SysTick->VAL;
+        if (tnow != told)
+        {
+            if (tnow < told)
+            {
+                tcnt += told - tnow;
+            }
+            else
+            {
+                tcnt += reload - tnow + told;
+            }
+            told = tnow;
+            if (tcnt >= ticks)
+            {
+                break;
+            }
+        }
+    }
+}
 /*@}*/

+ 1 - 1
bsp/Vango_V85xx/drivers/drv_gpio.c

@@ -206,7 +206,7 @@ const static struct rt_pin_ops _v85xx_pin_ops =
     v85xx_pin_mode,
     v85xx_pin_write,
     v85xx_pin_read,
-    v85xx_pin_get,
+    // v85xx_pin_get,
 };
 
 rt_inline void pin_irq_hdr(int irqno)