HomeSort by: relevance | last modified time | path
    Searched defs:qCoff (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/isc/atheros_hal/dist/ar5416/
ar5416_cal_iq.c 101 int32_t qCoff = powerMeasI/qCoffDenom - 64;
105 HALDEBUG(ah, HAL_DEBUG_PERCAL, " qCoff = 0x%08x\n",
106 qCoff);
115 if (qCoff > 15)
116 qCoff = 15;
117 else if (qCoff <= -16)
118 qCoff = -16;
120 " : iCoff = 0x%x qCoff = 0x%x\n", iCoff, qCoff);
125 AR_PHY_TIMING_CTRL4_IQCORR_Q_Q_COFF, qCoff);
    [all...]
  /src/sys/external/isc/atheros_hal/dist/ar5211/
ar5211_reset.c 672 int32_t qCoff, qCoffDenom;
709 qCoff = ((int32_t)powerMeasI / qCoffDenom) - 64;
711 qCoff = qCoff & 0x1f;
721 HALDEBUG(ah, HAL_DEBUG_PERCAL, "qCoff = %d\n",
722 qCoff);
728 ((uint32_t)qCoff);
  /src/sys/external/isc/atheros_hal/dist/ar5212/
ar5212_reset.c 981 int32_t qCoff, qCoffDenom;
1045 qCoff = (powerMeasI / qCoffDenom) - 128;
1046 if (qCoff < -16) {
1047 qCoff = -16;
1048 } else if (qCoff > 15) {
1049 qCoff = 15;
1065 "qCoff = %d\n", qCoff);
1071 AR_PHY_TIMING_CTRL4_IQCORR_Q_Q_COFF, qCoff);
1078 ichan->qCoff = qCoff
    [all...]
  /src/sys/external/isc/atheros_hal/dist/
ah_internal.h 143 int8_t qCoff;

Completed in 20 milliseconds