標題: 最簡單的程序都編譯出錯,幫我看下是什么問題。 [打印本頁] 作者: xiayudhtfghy198 時間: 2017-7-5 19:05 標題: 最簡單的程序都編譯出錯,幫我看下是什么問題。 // PIC16F877A Configuration Bit Settings
// 'C' source line config statements
// CONFIG
#include <stdio.h>
#include <stdlib.h>
#pragma config FOSC = HS // Oscillator Selection bits (HS oscillator)
#pragma config WDTE = OFF // Watchdog Timer Enable bit (WDT disabled)
#pragma config PWRTE = OFF // Power-up Timer Enable bit (PWRT disabled)
#pragma config BOREN = OFF // Brown-out Reset Enable bit (BOR disabled)
#pragma config LVP = OFF // Low-Voltage (Single-Supply) In-Circuit Serial Programming Enable bit (RB3 is digital I/O, HV on MCLR must be used for programming)
#pragma config CPD = OFF // Data EEPROM Memory Code Protection bit (Data EEPROM code protection off)
#pragma config WRT = OFF // Flash Program Memory Write Enable bits (Write protection off; all program memory may be written to by EECON control)
#pragma config CP = OFF // Flash Program Memory Code Protection bit (Code protection off)
// #pragma config statements should precede project file includes.
// Use project enums instead of #define for ON and OFF.
#include <xc.h>
/*
* File: 蜂鳴器.c
* Author: Administrator
*
* Created on 2017年7月5日, 下午6:44
*/