8000 Correct monotonic. · boneskull/circuitpython@161ab01 · GitHub
[go: up one dir, main page]

Skip to content

Commit 161ab01

Browse files
committed
Correct monotonic.
Fixes adafruit#69.
1 parent 37f2ff1 commit 161ab01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared-bindings/time/__init__.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
//| :rtype: float
5353
//|
5454
STATIC mp_obj_t time_monotonic(void) {
55-
return mp_obj_new_float(common_hal_time_monotonic() / 100.0);
55+
return mp_obj_new_float(common_hal_time_monotonic() / 1000.0);
5656
}
5757
MP_DEFINE_CONST_FUN_OBJ_0(time_monotonic_obj, time_monotonic);
5858

0 commit comments

Comments
 (0)
0