summaryrefslogtreecommitdiffstatshomepage
path: root/esp8266
diff options
context:
space:
mode:
Diffstat (limited to 'esp8266')
-rw-r--r--esp8266/modpyb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/modpyb.c b/esp8266/modpyb.c
index c4eb35d57b..14dfebd333 100644
--- a/esp8266/modpyb.c
+++ b/esp8266/modpyb.c
@@ -81,7 +81,7 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(pyb_info_obj, 0, 1, pyb_info);
STATIC mp_obj_t pyb_freq(mp_uint_t n_args, const mp_obj_t *args) {
if (n_args == 0) {
// get
- return mp_obj_new_int(mp_hal_get_cpu_freq());
+ return mp_obj_new_int(mp_hal_get_cpu_freq() * 1000000);
} else {
// set
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "can't change freq"));