Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: TFT_Touch_WaveShare
system.h
- Committer:
- igbt6
- Date:
- 2018-04-03
- Revision:
- 1:c311d5f59c8b
- Parent:
- 0:619824763516
File content as of revision 1:c311d5f59c8b:
#ifndef SYSTEM_H
#define SYSTEM_H
#include <stdint.h>
#define HIGH 1
#define LOW 0
template<typename T, typename U>
struct is_same
{
static const bool value = false;
};
template<typename T>
struct is_same<T,T> //specialization
{
static const bool value = true;
};
#endif