소스 검색

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>