-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
46 changed files
with
5,529 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
Arduino API main include | ||
Copyright (c) 2016 Arduino LLC. All right reserved. | ||
This library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 2.1 of the License, or (at your option) any later version. | ||
This library is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public | ||
License along with this library; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
*/ | ||
|
||
#ifndef ARDUINO_API_H | ||
#define ARDUINO_API_H | ||
|
||
// version 1.5.1 | ||
#define ARDUINO_API_VERSION 10501 | ||
|
||
#include "Binary.h" | ||
|
||
#ifdef __cplusplus | ||
#include "Interrupts.h" | ||
#include "IPAddress.h" | ||
#include "Print.h" | ||
#include "Printable.h" | ||
#include "PluggableUSB.h" | ||
#include "Server.h" | ||
#include "String.h" | ||
#include "Stream.h" | ||
#include "Udp.h" | ||
#include "USBAPI.h" | ||
#include "WCharacter.h" | ||
#endif | ||
|
||
/* Standard C library includes */ | ||
#include <stdlib.h> | ||
#include <stdint.h> | ||
#include <stdbool.h> | ||
#include <string.h> | ||
#include <math.h> | ||
|
||
// Misc Arduino core functions | ||
#include "Common.h" | ||
|
||
#ifdef __cplusplus | ||
// Compatibility layer for older code | ||
#include "Compat.h" | ||
#endif | ||
|
||
#endif |
Oops, something went wrong.