platform_action_light.c 606 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (C) 2021 Alibaba Group Holding Limited
  3. * Author: fuqian.zxr <fuqian.zxr@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. #define LOG_LEVEL 3
  10. #define LOG_PREFIX "platform_action"
  11. #include <syslog.h>
  12. #include "platform_action.h"
  13. #include <stdio.h>
  14. int camera_action_image_save(csi_frame_ex_s *frame)
  15. {
  16. //wait to complete
  17. return 0;
  18. }
  19. int camera_action_image_display(csi_frame_ex_s *frame)
  20. {
  21. //wait to complete
  22. return 0;
  23. }