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
00001 #ifndef SYSTEM_H 00002 #define SYSTEM_H 00003 00004 #include <stdint.h> 00005 00006 #define HIGH 1 00007 #define LOW 0 00008 00009 template<typename T, typename U> 00010 struct is_same 00011 { 00012 static const bool value = false; 00013 }; 00014 00015 template<typename T> 00016 struct is_same<T,T> //specialization 00017 { 00018 static const bool value = true; 00019 }; 00020 00021 00022 #endif
Generated on Tue Jul 19 2022 13:55:32 by
 1.7.2
 1.7.2