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.
Fork of MicroBitDALImageRewrite by
MicroBitCompat.h
00001 /** 00002 * Compatibility setting for the MicroBit DAL. 00003 */ 00004 00005 #ifndef MICROBIT_COMPAT_H 00006 #define MICROBIT_COMPAT_H 00007 00008 #define min(a,b) (a < b ? a : b) 00009 #define max(a,b) (a > b ? a : b) 00010 #define memclr(a,b) (memset(a,0,b)) 00011 00012 #define PI 3.14159265359 00013 00014 00015 #endif
Generated on Thu Jul 14 2022 13:31:29 by
