This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS: About usDelay( ) function in instaSPIN-FOC

Tool/software: Code Composer Studio

What are the differences between usDelay( ) function in usDelay.h and adc.c ?

in usDelay.h:

//! \brief     Provides a prescribes micro-second delay
//! \param[in] delay_usec  The delay, usec
extern void usDelay(const uint_least32_t delay_usec);

in adc.c:

// assembly file
extern void usDelay(uint32_t Count);