Browse Source

del:去掉调试打印

Dozingfiretruck 2 years ago
parent
commit
dd452950b3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      components/mlx90640-library/luat_lib_mlx90640.c

+ 1 - 1
components/mlx90640-library/luat_lib_mlx90640.c

@@ -329,7 +329,7 @@ static uint8_t * luat_interpolation_double(uint8_t *src, uint16_t rows,uint16_t
     int w2 = w1*2;
     //int h2 = h1*2;
     uint8_t* dst = (uint8_t*)luat_heap_malloc(rows*cols*4);
-    LLOGD("luat_interpolation_double src:%p rows:%d cols:%d rows*cols*4:%d dst:%p ",src,rows,cols,rows*cols*4,dst);
+    // LLOGD("luat_interpolation_double src:%p rows:%d cols:%d rows*cols*4:%d dst:%p ",src,rows,cols,rows*cols*4,dst);
     for (size_t y = 0; y < h1; y++){
         for (size_t x = 0; x < w1; x++){
             dst[y*2*w2+x*2] = src[y*w1+x];