S&B Volcano vaporizer remote control with Pi Pico W
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

mem.h 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * mem.h
  3. *
  4. * Copyright (c) 2023 Thomas Buck (thomas@xythobuz.de)
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * See <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef __MEM_H__
  19. #define __MEM_H__
  20. #include <stdint.h>
  21. #include <stdbool.h>
  22. #include "workflow.h"
  23. #include "wifi.h"
  24. // to migrate settings when struct changes between releases
  25. #define MEM_VERSION 0
  26. struct mem_data {
  27. // wifi networks
  28. // should stay at beginning, for bootloader
  29. uint16_t net_count;
  30. struct net_credentials net[WIFI_MAX_NET_COUNT];
  31. // settings
  32. uint16_t backlight;
  33. bool wf_auto_connect;
  34. bool enable_wifi;
  35. // workflows
  36. uint16_t wf_count;
  37. struct workflow wf[WF_MAX_FLOWS];
  38. };
  39. // workflows are assigned in mem_init()
  40. #define MEM_DATA_INIT { \
  41. .backlight = (0xFF00 >> 1), \
  42. .wf_auto_connect = false, \
  43. .enable_wifi = false, \
  44. .wf_count = 0, \
  45. .net_count = 0, \
  46. }
  47. void mem_load(void);
  48. void mem_write(void);
  49. struct mem_data *mem_data(void);
  50. void mem_load_defaults(void);
  51. #endif // __MEM_H__