1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

drivers/bh1750fvi: fix typos

This commit is contained in:
Kaspar Schleiser 2019-10-23 21:24:16 +02:00
parent a62797e8ba
commit 54831bbb6e

View File

@ -28,7 +28,7 @@ extern "C" {
* @brief Result divisor (1.2 times 65535)
*
* The 16-bit RAW results have to be divided by 1.2. We do this by using fixed
* floating point arithmetics by multiplying divisor and RAW value by 65535 (
* floating point arithmetic by multiplying divisor and RAW value by 65535 (
* uint16_t max).
*/
#define RES_DIV (78642)