flip_library_storage.h 404 B

12345678910111213
  1. #ifndef FLIP_LIBRARY_STORAGE_H
  2. #define FLIP_LIBRARY_STORAGE_H
  3. #include <furi.h>
  4. #include <storage/storage.h>
  5. #include <flip_library.h>
  6. #define SETTINGS_PATH STORAGE_EXT_PATH_PREFIX "/apps_data/flip_library/settings.bin"
  7. void save_settings(const char *ssid, const char *password);
  8. bool load_settings(char *ssid, size_t ssid_size, char *password, size_t password_size);
  9. #endif // FLIP_LIBRARY_STORAGE_H