Dozingfiretruck 4 лет назад
Родитель
Сommit
103f829f83
1 измененных файлов с 0 добавлено и 1 удалено
  1. 0 1
      luat/modules/luat_lib_pwm.c

+ 0 - 1
luat/modules/luat_lib_pwm.c

@@ -58,7 +58,6 @@ log.info("pwm.get(0)",pwm.capture(0))
 static int l_pwm_capture(lua_State *L) {
     int pwmH,pwmL;
     int pulse = luat_pwm_capture(luaL_checkinteger(L, 1),luaL_checkinteger(L, 2),&pwmH,&pwmL);
-    printf("pwmH %d,pwmL %d\n",pwmH,pwmL);
     lua_pushnumber(L,pulse);
     return 1;
 }