You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
211 B

#include <stdio.h>
#include <stdint.h>
#include "mpconfig.h"
#include "Arduino.h"
#include MICROPY_HAL_H
uint32_t HAL_GetTick(void) {
return micros();
}
void HAL_Delay(uint32_t Delay) {
delay(Delay);
}