WaitForRestart.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed WaitForRestart (struct plc * plc, char string [], size_t length);
  11. *
  12. * plc.h
  13. *
  14. * wait for the local powerline device to reset then start again;
  15. * this function may be called to stop the program from returning
  16. * to the command line until a flash or reset action is completed;
  17. *
  18. * Contributor(s):
  19. * Charles Maier <cmaier@qca.qualcomm.com>
  20. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  21. *
  22. *--------------------------------------------------------------------*/
  23. #ifndef WAITFORRESTART_SOURCE
  24. #define WAITFORRESTART_SOURCE
  25. #include "../plc/plc.h"
  26. #include "../tools/error.h"
  27. #include "../tools/flags.h"
  28. signed WaitForRestart (struct plc * plc)
  29. {
  30. if (_allclr (plc->flags, PLC_QUICK_FLASH))
  31. {
  32. char firmware [PLC_VERSION_STRING];
  33. unsigned timer = plc->timer;
  34. if (WaitForReset (plc))
  35. {
  36. error ((plc->flags & PLC_BAILOUT), 0, "Device did not Reset");
  37. return (-1);
  38. }
  39. plc->timer = PLC_FLASH;
  40. if (WaitForStart (plc, firmware, sizeof (firmware)))
  41. {
  42. error ((plc->flags & PLC_BAILOUT), 0, "Device did not Start");
  43. plc->timer = timer;
  44. return (-1);
  45. }
  46. plc->timer = timer;
  47. }
  48. return (0);
  49. }
  50. #endif