1st compiling version, display seems to be ok, RF not tested.

This commit is contained in:
Dirk Jahnke
2018-11-06 22:54:26 +01:00
parent 724c622ca4
commit bb141a2615
3 changed files with 27 additions and 21 deletions

View File

@@ -16,7 +16,6 @@
#ifdef MONGOOSE_OS
/*
static bool s_randomSeedCalled = false;
static void randomSeed(unsigned long seed) {
if(seed != 0) {
srand(seed);

View File

@@ -890,7 +890,9 @@
#define YIELD yield();
#elif (RH_PLATFORM == RH_PLATFORM_ESP8266)
// ESP8266 also hash it
#define YIELD yield();
// freertos/include/freertos/task.h
// #include "freertos/task.h"
#define YIELD
#else
#define YIELD
#endif