mirror of https://github.com/meshcore-dev/MeshCore
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.
20 lines
407 B
20 lines
407 B
#pragma once
|
|
// Minimal Arduino.h stub for host-side compilation of MeshCore core sources.
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include <cstddef>
|
|
using std::size_t;
|
|
#include <string.h>
|
|
#include <math.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
typedef bool boolean;
|
|
typedef uint8_t byte;
|
|
|
|
#ifndef F
|
|
#define F(x) (x)
|
|
#endif
|
|
|
|
inline unsigned long millis() { return 0; }
|
|
inline void delay(unsigned long) {}
|
|
|