Explorar el Código

add:i2c发送默认不加停止信号

Dozingfiretruck hace 4 años
padre
commit
d1fb3236e5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      app/port/luat_i2c_air101.c

+ 1 - 1
app/port/luat_i2c_air101.c

@@ -41,7 +41,7 @@ int luat_i2c_send(int id, int addr, void* buff, size_t len) {
         if(WM_FAILED == tls_i2c_wait_ack())
             return -1;
     }
-    tls_i2c_stop();
+    // tls_i2c_stop();
     return 0;
 }