mirror of
https://github.com/mikecarper/MeshCore.git
synced 2026-09-16 19:22:54 +00:00
8 lines
183 B
C
8 lines
183 B
C
#pragma once
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
inline uint32_t millis() { return 100000; }
|
|
inline uint32_t micros() { return 100000000; }
|