diff options
Diffstat (limited to 'src/hardware.c')
| -rwxr-xr-x | src/hardware.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/hardware.c b/src/hardware.c index 9869ffa..b97d5f1 100755 --- a/src/hardware.c +++ b/src/hardware.c @@ -1220,9 +1220,10 @@ uint32_t hw_lpm_get_idle_timeout(void) */ timeout_ms = (uint32_t)lpm_param.host_stack_idle_threshold \ * LPM_IDLE_TIMEOUT_MULTIPLE; - if (strstr(hw_cfg_cb.local_chip_name, "BCM4325") != NULL) timeout_ms *= 25; // 12.5 or 25 ? + else if (strstr(hw_cfg_cb.local_chip_name, "BCM4358") != NULL) + timeout_ms *= 50; else timeout_ms *= 300; |
