18 lines
298 B
C
18 lines
298 B
C
|
|
/** \file
|
|
\brief Delay routines, ARM specific part.
|
|
*/
|
|
|
|
#if defined TEACUP_C_INCLUDE && defined __ARMEL__
|
|
|
|
/** Delay in microseconds.
|
|
|
|
\param delay Time to wait in microseconds.
|
|
|
|
To Be Defined.
|
|
*/
|
|
void delay_us(uint16_t delay) {
|
|
}
|
|
|
|
#endif /* defined TEACUP_C_INCLUDE && defined __ARMEL__ */
|