Forked from LibPN532

Dependents:   NFC_Secure_Access NFC_Secure_Access

Fork of LibPN532 by dotnfc Tang

Committer:
udareaniket
Date:
Sun Apr 22 23:29:20 2018 +0000
Revision:
2:9a2ab3fa7862
Parent:
0:db8030e71f55
Initial commit;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dotnfc 0:db8030e71f55 1
dotnfc 0:db8030e71f55 2 #ifndef __ARDUINO_H__
dotnfc 0:db8030e71f55 3 #define __ARDUINO_H__
dotnfc 0:db8030e71f55 4
dotnfc 0:db8030e71f55 5 #include "mbed.h"
dotnfc 0:db8030e71f55 6 #include "HardwareSerial.h"
dotnfc 0:db8030e71f55 7
dotnfc 0:db8030e71f55 8
dotnfc 0:db8030e71f55 9 /**
dotnfc 0:db8030e71f55 10 * \brief Returns the number of milliseconds since the Arduino board began running the current program.
dotnfc 0:db8030e71f55 11 *
dotnfc 0:db8030e71f55 12 * This number will overflow (go back to zero), after approximately 50 days.
dotnfc 0:db8030e71f55 13 *
dotnfc 0:db8030e71f55 14 * \return Number of milliseconds since the program started (uint32_t)
dotnfc 0:db8030e71f55 15 */
dotnfc 0:db8030e71f55 16 //uint32_t millis( void );
dotnfc 0:db8030e71f55 17
dotnfc 0:db8030e71f55 18
dotnfc 0:db8030e71f55 19 /**
dotnfc 0:db8030e71f55 20 * \brief Pauses the program for the amount of time (in miliseconds) specified as parameter.
dotnfc 0:db8030e71f55 21 * (There are 1000 milliseconds in a second.)
dotnfc 0:db8030e71f55 22 *
dotnfc 0:db8030e71f55 23 * \param dwMs the number of milliseconds to pause (uint32_t)
dotnfc 0:db8030e71f55 24 */
dotnfc 0:db8030e71f55 25 //inline void delay( uint32_t dwMs ) ;
dotnfc 0:db8030e71f55 26 #define delay wait_ms
dotnfc 0:db8030e71f55 27
dotnfc 0:db8030e71f55 28
dotnfc 0:db8030e71f55 29 /*==============================================================================
dotnfc 0:db8030e71f55 30 * \brief arduino like 'tone ()'
dotnfc 0:db8030e71f55 31 */
dotnfc 0:db8030e71f55 32 void tone(PwmOut &buz, long frequency);
dotnfc 0:db8030e71f55 33
dotnfc 0:db8030e71f55 34 #endif // __ARDUINO_H__