ReadParameters2.c 918 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed ReadParameters2 (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * Read the PIB Image from a QCA6410, QCA7000 or QCA7420 using as
  15. * many VS_MODULE_OPERATION messages as needed; Write image blocks
  16. * to file as they are read;
  17. *
  18. * Contributor(s):
  19. * Charles Maier <cmaier@qca.qualcomm.com>
  20. *
  21. *--------------------------------------------------------------------*/
  22. #ifndef READPARAMETERS2_SOURCE
  23. #define READPARAMETERS2_SOURCE
  24. #include "../plc/plc.h"
  25. signed ReadParameters2 (struct plc * plc)
  26. {
  27. return (ModuleRead (plc, & plc->pib, PLC_MOD_OP_READ_MEMORY, PLC_MODULEID_PARAMETERS, 0));
  28. }
  29. #endif