Hi3861的micropython移植之Timer
原创 精华
1、移植的准备Timer主要用于定时触发事件使用。移植相对容易。需要include"hitimer.h"中的相关函数。2、machinetimerobjt定义ctypedefstructmachinetimerobjt{mpobjbasetbase;mpobjttimeoutcb;uint32tmode;uint32tperiod;hiu32gtimerhandle;structmachinetimerobjtnext;}machinetimerobjt;定义hiu32gtimerhandle用于存储定时器handle3、创建Timer定时器cSTATICmpobjtmachinetimermakenew(constmpobjtypettype,sizetnargs,sizetn...