malveke_photo.c 441 B

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