Loading radio/1.2/IRadio.hal +12 −13 Original line number Diff line number Diff line Loading @@ -93,14 +93,13 @@ interface IRadio extends @1.1::IRadio { * @param hysteresisMs A hysteresis time in milliseconds to prevent flapping. A value of 0 * disables hysteresis. * @param hysteresisDlKbps An interval in kbps defining the required magnitude change between DL * reports. hysteresisDlKbps must be smaller than the smallest threshold * delta. A value of 0 disables hysteresis. * reports. hysteresisDlKbps must be smaller than the smallest threshold delta. A value of 0 * disables hysteresis. * @param hysteresisUlKbps An interval in kbps defining the required magnitude change between UL * reports. hysteresisUlKbps must be smaller than the smallest threshold * delta. A value of 0 disables hysteresis. * reports. hysteresisUlKbps must be smaller than the smallest threshold delta. A value of 0 * disables hysteresis. * @param thresholdsDownlinkKbps A vector of trigger thresholds in kbps for downlink reports. A * vector size of 0 disables the use of DL thresholds for * reporting. * vector size of 0 disables the use of DL thresholds for reporting. * @param thresholdsUplinkKbps A vector of trigger thresholds in kbps for uplink reports. A * vector size of 0 disables the use of UL thresholds for reporting. * @param accessNetwork The type of network for which to apply these thresholds. Loading radio/1.2/types.hal +8 −2 Original line number Diff line number Diff line Loading @@ -361,11 +361,17 @@ struct CardStatus { struct LinkCapacityEstimate { /** * Estimated downlink capacity in kbps. * Estimated downlink capacity in kbps. This bandwidth estimate shall be the estimated * maximum sustainable link bandwidth (as would be measured at the Upper PDCP or SNDCP SAP). * If the DL Aggregate Maximum Bit Rate is known, this value shall not exceed the DL-AMBR * for the Internet PDN connection. */ uint32_t downlinkCapacityKbps; /** * Estimated uplink capacity in kbps. * Estimated uplink capacity in kbps. This bandwidth estimate shall be the estimated * maximum sustainable link bandwidth (as would be measured at the Upper PDCP or SNDCP SAP). * If the UL Aggregate Maximum Bit Rate is known, this value shall not exceed the UL-AMBR * for the Internet PDN connection. */ uint32_t uplinkCapacityKbps; }; Loading Loading
radio/1.2/IRadio.hal +12 −13 Original line number Diff line number Diff line Loading @@ -93,14 +93,13 @@ interface IRadio extends @1.1::IRadio { * @param hysteresisMs A hysteresis time in milliseconds to prevent flapping. A value of 0 * disables hysteresis. * @param hysteresisDlKbps An interval in kbps defining the required magnitude change between DL * reports. hysteresisDlKbps must be smaller than the smallest threshold * delta. A value of 0 disables hysteresis. * reports. hysteresisDlKbps must be smaller than the smallest threshold delta. A value of 0 * disables hysteresis. * @param hysteresisUlKbps An interval in kbps defining the required magnitude change between UL * reports. hysteresisUlKbps must be smaller than the smallest threshold * delta. A value of 0 disables hysteresis. * reports. hysteresisUlKbps must be smaller than the smallest threshold delta. A value of 0 * disables hysteresis. * @param thresholdsDownlinkKbps A vector of trigger thresholds in kbps for downlink reports. A * vector size of 0 disables the use of DL thresholds for * reporting. * vector size of 0 disables the use of DL thresholds for reporting. * @param thresholdsUplinkKbps A vector of trigger thresholds in kbps for uplink reports. A * vector size of 0 disables the use of UL thresholds for reporting. * @param accessNetwork The type of network for which to apply these thresholds. Loading
radio/1.2/types.hal +8 −2 Original line number Diff line number Diff line Loading @@ -361,11 +361,17 @@ struct CardStatus { struct LinkCapacityEstimate { /** * Estimated downlink capacity in kbps. * Estimated downlink capacity in kbps. This bandwidth estimate shall be the estimated * maximum sustainable link bandwidth (as would be measured at the Upper PDCP or SNDCP SAP). * If the DL Aggregate Maximum Bit Rate is known, this value shall not exceed the DL-AMBR * for the Internet PDN connection. */ uint32_t downlinkCapacityKbps; /** * Estimated uplink capacity in kbps. * Estimated uplink capacity in kbps. This bandwidth estimate shall be the estimated * maximum sustainable link bandwidth (as would be measured at the Upper PDCP or SNDCP SAP). * If the UL Aggregate Maximum Bit Rate is known, this value shall not exceed the UL-AMBR * for the Internet PDN connection. */ uint32_t uplinkCapacityKbps; }; Loading