瀏覽代碼

fixed: compile err

packages/micropython-latest/port/mpgetcharport.c:40:5: error: unknown
type name 'uint8_t'
     uint8_t ch;
michael 5 年之前
父節點
當前提交
5808c7ed93
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      port/mpgetcharport.c

+ 1 - 0
port/mpgetcharport.c

@@ -25,6 +25,7 @@
  */
 
 #include <stdio.h>
+#include <stdint.h>
 #include <rtthread.h>
 #include <rtdevice.h>
 #include <rthw.h>