@@ -29,9 +29,8 @@ | |||
*/ | |||
#include <string.h> // for memcpy | |||
#include "AudioStream.h" | |||
#include <Arduino.h> | |||
#include "AudioStream.h" | |||
#if defined(__MKL26Z64__) | |||
#define MAX_AUDIO_MEMORY 6144 |
@@ -31,6 +31,7 @@ | |||
* https://forum.pjrc.com/threads/44723-Arduino-Events | |||
*/ | |||
#include <Arduino.h> | |||
#include "EventResponder.h" | |||
EventResponder * EventResponder::firstYield = nullptr; |
@@ -28,6 +28,7 @@ | |||
* SOFTWARE. | |||
*/ | |||
#include <Arduino.h> | |||
#include "HardwareSerial.h" | |||
HardwareSerial Serial1; |
@@ -28,6 +28,7 @@ | |||
* SOFTWARE. | |||
*/ | |||
#include <Arduino.h> | |||
#include "HardwareSerial.h" | |||
HardwareSerial2 Serial2; |
@@ -28,6 +28,7 @@ | |||
* SOFTWARE. | |||
*/ | |||
#include <Arduino.h> | |||
#include "HardwareSerial.h" | |||
HardwareSerial3 Serial3; |
@@ -28,6 +28,7 @@ | |||
* SOFTWARE. | |||
*/ | |||
#include <Arduino.h> | |||
#include "HardwareSerial.h" | |||
#ifdef HAS_KINETISK_UART3 |
@@ -28,6 +28,7 @@ | |||
* SOFTWARE. | |||
*/ | |||
#include <Arduino.h> | |||
#include "HardwareSerial.h" | |||
#ifdef HAS_KINETISK_UART4 |
@@ -28,6 +28,7 @@ | |||
* SOFTWARE. | |||
*/ | |||
#include <Arduino.h> | |||
#include "HardwareSerial.h" | |||
#if defined(HAS_KINETISK_UART5) || defined (HAS_KINETISK_LPUART0) |
@@ -17,7 +17,7 @@ | |||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |||
*/ | |||
#include "Arduino.h" | |||
#include <Arduino.h> | |||
#include "IPAddress.h" | |||
size_t IPAddress::printTo(Print& p) const |
@@ -34,11 +34,7 @@ | |||
// developed for Teensyduino have made their way back into | |||
// Arduino's code base. :-) | |||
#include <inttypes.h> | |||
#include <math.h> | |||
#include "Print.h" | |||
#include <Arduino.h> | |||
size_t Print::write(const uint8_t *buffer, size_t size) |
@@ -20,8 +20,7 @@ | |||
parsing functions based on TextFinder library by Michael Margolis | |||
*/ | |||
#include "Arduino.h" | |||
#include "Stream.h" | |||
#include <Arduino.h> | |||
#define PARSE_TIMEOUT 1000 // default number of milli-seconds to wait | |||
#define NO_SKIP_CHAR 1 // a magic char not found in a valid ASCII numeric field |
@@ -28,10 +28,7 @@ | |||
* SOFTWARE. | |||
*/ | |||
#include "core_pins.h" | |||
#include "pins_arduino.h" | |||
#include "HardwareSerial.h" | |||
#include "IntervalTimer.h" | |||
#include <Arduino.h> | |||
// IntervalTimer based tone. This allows tone() to share the timers with other | |||
// libraries, rather than permanently hogging one PIT timer even for projects |
@@ -19,7 +19,7 @@ | |||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |||
*/ | |||
#include "WString.h" | |||
#include <Arduino.h> | |||
/*********************************************/ |
@@ -29,7 +29,7 @@ | |||
*/ | |||
#include "avr_emulation.h" | |||
#include <Arduino.h> | |||
#include "SPIFIFO.h" | |||
uint8_t SPCRemulation::pinout = 0; |
@@ -28,7 +28,7 @@ | |||
* SOFTWARE. | |||
*/ | |||
#include "WProgram.h" | |||
#include <Arduino.h> | |||
extern "C" int main(void) | |||
{ |
@@ -28,10 +28,8 @@ | |||
* SOFTWARE. | |||
*/ | |||
#include <Arduino.h> | |||
#include "usb_dev.h" | |||
#include "usb_audio.h" | |||
#include "HardwareSerial.h" | |||
#include <string.h> // for memcpy() | |||
#ifdef AUDIO_INTERFACE // defined by usb_dev.h -> usb_desc.h | |||
#if F_CPU >= 20000000 |
@@ -28,7 +28,7 @@ | |||
* SOFTWARE. | |||
*/ | |||
#include "WProgram.h" | |||
#include <Arduino.h> | |||
#include "usb_desc.h" | |||
#if F_CPU >= 20000000 |
@@ -28,10 +28,7 @@ | |||
* SOFTWARE. | |||
*/ | |||
#include "core_pins.h" | |||
#include "HardwareSerial.h" | |||
#include "usb_serial.h" | |||
#include "usb_seremu.h" | |||
#include <Arduino.h> | |||
#include "EventResponder.h" | |||
void yield(void) __attribute__ ((weak)); |