power.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
  3. * All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with this program; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  18. *
  19. * File: power.h
  20. *
  21. * Purpose: Handles 802.11 power management functions
  22. *
  23. * Author: Lyndon Chen
  24. *
  25. * Date: July 17, 2002
  26. *
  27. */
  28. #ifndef __POWER_H__
  29. #define __POWER_H__
  30. /*--------------------- Export Definitions -------------------------*/
  31. #define C_PWBT 1000 // micro sec. power up before TBTT
  32. #define PS_FAST_INTERVAL 1 // Fast power saving listen interval
  33. #define PS_MAX_INTERVAL 4 // MAX power saving listen interval
  34. /*--------------------- Export Classes ----------------------------*/
  35. /*--------------------- Export Variables --------------------------*/
  36. /*--------------------- Export Types ------------------------------*/
  37. /*--------------------- Export Functions --------------------------*/
  38. // PSDevice pDevice
  39. // PSDevice hDeviceContext
  40. bool
  41. PSbConsiderPowerDown(
  42. void *hDeviceContext,
  43. bool bCheckRxDMA,
  44. bool bCheckCountToWakeUp
  45. );
  46. void
  47. PSvDisablePowerSaving(
  48. void *hDeviceContext
  49. );
  50. void
  51. PSvEnablePowerSaving(
  52. void *hDeviceContext,
  53. unsigned short wListenInterval
  54. );
  55. void
  56. PSvSendPSPOLL(
  57. void *hDeviceContext
  58. );
  59. bool
  60. PSbSendNullPacket(
  61. void *hDeviceContext
  62. );
  63. bool
  64. PSbIsNextTBTTWakeUp(
  65. void *hDeviceContext
  66. );
  67. #endif //__POWER_H__