Technical Support
On-Line Manuals
RL-ARM User's Guide (MDK v4)
#include <file_config.h> void Delay ( U32 us); /* Time to wait in micro seconds. */
The function Delay delays program execution in the MCI Driver. The parameter us specifies the delay time in micro-seconds.
The function is part of the MCI Driver. The prototype is defined in the file File_Config.h. Developers must customize the function.
none
mci.BusMode, mci.BusSpeed, mci.BusWidth, mci.CheckMedia, mci.Command, mci.Init, mci.ReadBlock, mci.SetDma, mci.UnInit, mci.WriteBlock
/* MCI Device Driver Control Block */ MCI_DRV mci0_drv = { Init, UnInit, Delay, BusMode, BusWidth, BusSpeed, Command, ReadBlock, WriteBlock, NULL, CheckMedia }; /* Approximate delay in micro seconds. */ static void Delay (U32 us) { U32 i; for (i = WAIT_CNT(__CPUCLK, us); i; i--); }
Cookie Settings | Terms of Use | Privacy | Accessibility | Trademarks | Contact Us | Feedback
Copyright © 2005-2019 Arm Limited (or its affiliates). All rights reserved.
This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies.
Change Settings
Arm’s Privacy Policy has been updated. By continuing to use our site, you consent to Arm’s Privacy Policy. Please review our Privacy Policy to learn more about our collection, use and transfers of your data.