Re: [PATCH 1/2] android/bluetooth: Add threashold to RSSI change

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Anderson,

>>> +{
>>> +     int delta;
>>> +
>>> +     if (old > new)
>>> +             delta = old - new;
>>> +     else
>>> +             delta = new - old;
>>> +
>>> +     /* only 8 dBm or more */
>>> +     return delta >= 8;
>> 
>>        int delta = old > new ? old - new : new - old;
> 
> And why not:
> 
> int delta = abs(old - new);
> 
> (unless there is no abs() in bionic)

I remember that abs() needs -lm or something stupid.

Regards

Marcel

--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux