FlashParameters.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed FlashParameters (struct plc * plc, uint32_t options);
  11. *
  12. * plc.h
  13. *
  14. * write runtime powerline parameters into flash memory using
  15. * VS_MODULE_OPERATION messages;
  16. *
  17. * struct vs_module_spec is defined in plc.h;
  18. *
  19. * Contributor(s):
  20. * Charles Maier <cmaier@qca.qualcomm.com>
  21. *
  22. *--------------------------------------------------------------------*/
  23. #ifndef FLASHPARAMETERS_SOURCE
  24. #define FLASHPARAMETERS_SOURCE
  25. #include "../plc/plc.h"
  26. signed FlashParameters (struct plc * plc, uint32_t options)
  27. {
  28. struct vs_module_spec vs_module_spec =
  29. {
  30. PLC_MODULEID_PARAMETERS,
  31. 0,
  32. 0,
  33. 0
  34. };
  35. ModuleSpec (& plc->PIB, & vs_module_spec);
  36. if (ModuleSession (plc, 1, & vs_module_spec))
  37. {
  38. return (-1);
  39. }
  40. if (ModuleWrite (plc, & plc->PIB, 0, & vs_module_spec))
  41. {
  42. return (-1);
  43. }
  44. if (ModuleCommit (plc, options))
  45. {
  46. return (-1);
  47. }
  48. return (0);
  49. }
  50. #endif