blob: 39f41ad8ad2b6a7a752ed192eb8843de94bb8baa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <stdio.h>
#include <stdint.h>
#include "mpconfig.h"
#include "Arduino.h"
#include MICROPY_HAL_H
uint32_t HAL_GetTick(void) {
return millis();
}
void HAL_Delay(uint32_t Delay) {
delay(Delay);
}
|