malveke_photo.c 441 B

123456789101112131415161718
  1. #include "malveke_photo.h"
  2. void get_timefilename(FuriString *name, int index)
  3. {
  4. FuriHalRtcDateTime datetime = {0};
  5. furi_hal_rtc_get_datetime(&datetime);
  6. furi_string_printf(
  7. name,
  8. "%s/%.4d%.2d%.2d-%.2d%.2d%.2d-%d.bmp",
  9. MALVEKE_APP_FOLDER_PHOTOS,
  10. datetime.year,
  11. datetime.month,
  12. datetime.day,
  13. datetime.hour,
  14. datetime.minute,
  15. datetime.second,
  16. index);
  17. }