本站改版新增arduino频道

Micropython
Arduino

micropython esp32查看系统频率信息


import time

import gc


def mem():

    r = gc.mem_free()

    print('free memory:', r)


print('Speed test')

try:

    print('System freq: {:.1f} MHz'.format(machine.freq()[0]/1000000))

except:

    print('System freq: {:.1f} MHz'.format(machine.freq()/1000000))

 

print('\n--------------------------------')

gc.collect()

mem()

time.sleep(100000);



推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号

执行时间: 0.0096371173858643 seconds