mirror of https://github.com/arendst/Tasmota.git
fix name sclashes in esp8266 SAM
This commit is contained in:
parent
34a0650b00
commit
45a464082a
|
@ -25,6 +25,7 @@
|
||||||
#ifdef ESP32
|
#ifdef ESP32
|
||||||
#include <HTTPClient.h>
|
#include <HTTPClient.h>
|
||||||
#else
|
#else
|
||||||
|
#include <WiFiClient.h>
|
||||||
#include <ESP8266HTTPClient.h>
|
#include <ESP8266HTTPClient.h>
|
||||||
#endif
|
#endif
|
||||||
#include "AudioFileSource.h"
|
#include "AudioFileSource.h"
|
||||||
|
@ -63,4 +64,3 @@ class AudioFileSourceHTTPStream : public AudioFileSource
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -23,9 +23,9 @@
|
||||||
|
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#ifdef ESP32
|
#ifdef ESP32
|
||||||
#include <HTTPClient.h>
|
// #include <HTTPClient.h>
|
||||||
#else
|
#else
|
||||||
#include <ESP8266HTTPClient.h>
|
// #include <ESP8266HTTPClient.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "AudioFileSourceHTTPStream.h"
|
#include "AudioFileSourceHTTPStream.h"
|
||||||
|
@ -47,4 +47,3 @@ class AudioFileSourceICYStream : public AudioFileSourceHTTPStream
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,10 @@
|
||||||
#define _AUDIOFILESOURCESD_H
|
#define _AUDIOFILESOURCESD_H
|
||||||
|
|
||||||
#include "AudioFileSource.h"
|
#include "AudioFileSource.h"
|
||||||
|
#ifdef ESP8266
|
||||||
|
#include <SdFat.h>
|
||||||
|
#include <SDFS.h>
|
||||||
|
#endif
|
||||||
#include <SD.h>
|
#include <SD.h>
|
||||||
|
|
||||||
|
|
||||||
|
@ -46,4 +50,3 @@ class AudioFileSourceSD : public AudioFileSource
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -272,6 +272,8 @@ bool AudioGeneratorMP3::begin(AudioFileSource *source, AudioOutput *output)
|
||||||
stream = NULL;
|
stream = NULL;
|
||||||
frame = NULL;
|
frame = NULL;
|
||||||
synth = NULL;
|
synth = NULL;
|
||||||
|
uint32_t size = buffLen + sizeof(struct mad_stream) + sizeof(struct mad_frame) + sizeof(struct mad_synth);
|
||||||
|
audioLogger->printf_P("OOM error in MP3: Want %d bytes\n", size);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -349,4 +351,3 @@ extern "C" {
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#define RENDERTABS_H
|
#define RENDERTABS_H
|
||||||
|
|
||||||
#include <pgmspace.h>
|
#include <pgmspace.h>
|
||||||
#include "debug.h"
|
#include "samdebug.h"
|
||||||
#if debug
|
#if debug
|
||||||
#define PROGMEM
|
#define PROGMEM
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#define SAMTABS_H
|
#define SAMTABS_H
|
||||||
|
|
||||||
#include <pgmspace.h>
|
#include <pgmspace.h>
|
||||||
#include "debug.h"
|
#include "samdebug.h"
|
||||||
#if debug
|
#if debug
|
||||||
#define PROGMEM
|
#define PROGMEM
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "reciter.h"
|
#include "reciter.h"
|
||||||
#include "ReciterTabs.h"
|
#include "ReciterTabs.h"
|
||||||
#include "debug.h"
|
#include "samdebug.h"
|
||||||
#include "SamData.h"
|
#include "SamData.h"
|
||||||
|
|
||||||
unsigned char A, X, Y;
|
unsigned char A, X, Y;
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#include "render.h"
|
#include "render.h"
|
||||||
#include "RenderTabs.h"
|
#include "RenderTabs.h"
|
||||||
|
|
||||||
#include "debug.h"
|
#include "samdebug.h"
|
||||||
//extern int debug;
|
//extern int debug;
|
||||||
#include <pgmspace.h>
|
#include <pgmspace.h>
|
||||||
#include "SamData.h"
|
#include "SamData.h"
|
||||||
|
|
|
@ -32,7 +32,7 @@ default_envs =
|
||||||
; tasmota-BR
|
; tasmota-BR
|
||||||
; tasmota-CN
|
; tasmota-CN
|
||||||
; tasmota-CZ
|
; tasmota-CZ
|
||||||
tasmota-DE
|
; tasmota-DE
|
||||||
; tasmota-ES
|
; tasmota-ES
|
||||||
; tasmota-FR
|
; tasmota-FR
|
||||||
; tasmota-GR
|
; tasmota-GR
|
||||||
|
|
Loading…
Reference in New Issue