1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-10-15 11:26:40 +03:00

* Basic constraint functionality added.

git-svn-id: svn://svn.code.sf.net/p/axtls/code/trunk@273 9a5d90b5-6617-0410-8a86-bb477d3ed2e3
This commit is contained in:
cameronrich
2016-12-28 19:43:52 +00:00
committed by Ivan Grokhotkov
parent 2213f30449
commit a2c7c7e40a
7 changed files with 356 additions and 95 deletions

View File

@@ -41,6 +41,11 @@
extern "C" {
#endif
/* some bool types - just make life easier */
typedef char bool;
#define false 0
#define true 1
#if defined(WIN32)
typedef UINT8 uint8_t;
typedef INT8 int8_t;