dump_utils.h 541 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (C) 2021 Alibaba Group Holding Limited
  3. * Author: LuChongzhi <chongzhi.lcz@alibaba-inc.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. #ifndef __DUMP_UTILS_H__
  10. #define __DUMP_UTILS_H__
  11. #include <stdio.h>
  12. #include <string.h>
  13. #include <csi_frame.h>
  14. void csi_dump_hex(char *data, int length, char *name);
  15. void csi_dump_img_info(csi_img_s *img);
  16. #endif // __DUMP_UTILS_H__