Config.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #pragma once
  2. #include "State.pb.h"
  3. #include "Status.pb.h"
  4. #include "configuration.pb.h"
  5. #include "freertos/FreeRTOS.h"
  6. #include "freertos/event_groups.h"
  7. #include "freertos/semphr.h"
  8. #include "freertos/timers.h"
  9. #include "status.pb.h"
  10. #include "accessors.h"
  11. #include "esp_http_server.h"
  12. #include "PBW.h"
  13. #ifdef __cplusplus
  14. extern System::PB<sys_state_data> stateWrapper;
  15. extern System::PB<sys_config> configWrapper;
  16. extern "C" {
  17. #endif
  18. #define PLATFORM_GET_PTR(base, sname) \
  19. { \
  20. (base && (base)->##has_##(sname) ? &(base)->sname : NULL)
  21. #define PLATFORM_DEVICES PLATFORM_GET_PTR(platform)
  22. void config_load();
  23. bool config_waitcommit();
  24. bool config_has_changes();
  25. void config_raise_changed(bool sync);
  26. void config_raise_state_changed();
  27. bool config_has_changes();
  28. bool config_waitcommit();
  29. void config_set_target(const char* target_name);
  30. void config_set_target_no_reset(const char* target_name);
  31. void config_set_target_reset(const char* target_name);
  32. void config_commit_protowrapper(void * protoWrapper);
  33. bool config_http_send_config(httpd_req_t* req);
  34. bool config_erase_config();
  35. void set_mac_string();
  36. void config_dump_config();
  37. bool system_set_string(
  38. const pb_msgdesc_t* desc, uint32_t field_tag, void* message, const char* value);
  39. extern sys_config* platform;
  40. extern sys_state_data* sys_state;
  41. extern sys_config* presets;
  42. #ifdef __cplusplus
  43. }
  44. #endif