support linux system

This commit is contained in:
ZYQ-FEIYUE
2022-08-09 22:38:26 +08:00
parent ef453b4ba6
commit d2816d24b5
130 changed files with 22 additions and 24 deletions

12
cores/arduino/WMath.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef __WMATH_H
#define __WMATH_H
extern "C" {
#include "stdlib.h"
}
void randomSeed(unsigned long seed);
long random(long howbig);
long random(long howsmall, long howbig);
#endif