PLCSelect.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed PLCSelect (struct plc * plc, signed old (struct plc *), signed new (struct plc *));
  11. *
  12. * plc.h
  13. *
  14. * wait for device to start in order to determine chipset then call
  15. * the approproate function based on chipset; unfortunately, chipset
  16. * detection and selection may not be this simple in the future;
  17. *
  18. * Contributor(s):
  19. * Charles Maier <cmaier@qca.qualcomm.com>
  20. *
  21. *--------------------------------------------------------------------*/
  22. #ifndef PLCSELECT_SOURCE
  23. #define PLCSELECT_SOURCE
  24. #include <stdlib.h>
  25. #include "../plc/plc.h"
  26. signed PLCSelect (struct plc * plc, signed old (struct plc *), signed new (struct plc *))
  27. {
  28. char firmware [PLC_VERSION_STRING];
  29. if (WaitForStart (plc, firmware, sizeof (firmware)))
  30. {
  31. Failure (plc, PLC_NODETECT);
  32. exit (1);
  33. }
  34. return ((plc->hardwareID < CHIPSET_AR7400)? old (plc): new (plc));
  35. }
  36. #endif