microcontroller.c

来自「Kalman Filter PIC30F3011 testboard V3 源码」· C语言 代码 · 共 29 行

C
29
字号
/***********************************************************************
 *                                                                     *
 * This file contains dsPIC30F3011 specific code                       *
 *                                                                     *
 ***********************************************************************
 *                                                                     * 
 *    Author:         Tom Pycke                                        *
 *    Filename:       microcontroller.c                                *
 *    Date:           13/10/2007                                       *
 *    File Version:   1.00                                             *
 *    Other Files Required: microcontroller.h                          *
 *                                                                     *
 ***********************************************************************/
 
 
#include "common.h"


// configuration bits
_FWDT(WDT_OFF);                  //Turn off the Watch-Dog Timer.
_FBORPOR(MCLR_EN & PWRT_OFF);    //Enable MCLR reset pin and turn off the
                                 //power-up timers.
_FGS(CODE_PROT_OFF);             //Disable Code Protection

void init_microcontroller()
{
	
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?