9
0
Fork 0

Recalibrate delay loop

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@593 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2008-01-30 22:33:00 +00:00
parent f0249b9775
commit 8df77f1481
1 changed files with 5 additions and 2 deletions

View File

@ -53,7 +53,10 @@
* Definitions
****************************************************************************/
/* Define to enable timing loop calibration */
/* Define to enable timing loop calibration. CONFIG_DEBUG and
* CONFIG_ARCH_LOWPUTC must also be enabled in the .config file because
* the logic uses lldbg()
*/
#undef CONFIG_ARCH_CALIBRATION
@ -90,7 +93,7 @@ FAR chipreg_t *current_regs;
*
****************************************************************************/
#if defined(CONFIG_ARCH_CALIBRATION) & defined(CONFIG_DEBUG)
#if defined(CONFIG_ARCH_CALIBRATION) & defined(CONFIG_DEBUG) && defined(CONFIG_ARCH_LOWPUTC)
static void up_calibratedelay(void)
{
int i;