PIC16F884配置字2寄存器(CONFIG2)的操作

2020-02-08 09:14发布

我使用PIC16F884,在编译程序的时候出现了一个错误

Error[491]  0 : can't find 0x2 words for psect "config" in segment "CONFIG"

程序出错代码:
__CONFIG(0X2FE9); //(CONFIG_ADDR)
__CONFIG(0X3EFF); //(CONFIG_ADDR2)

也就是我要在程序中设置 配置字2寄存器 该如何操作,希望大家知道一下。
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
18条回答
youmcu
2020-02-08 12:45
; '__CONFIG' directive is used to embed configuration data within .asm file.
; The labels following the directive are located in the respective .inc file.
; See respective data sheet for additional information on configuration word.

    __CONFIG    _CONFIG1, _LVP_OFF & _FCMEN_ON & _IESO_OFF & _BOR_OFF & _CPD_OFF & _CP_OFF & _MCLRE_ON & _PWRTE_ON & _WDT_OFF & _INTRC_OSC_NOCLKOUT
    __CONFIG    _CONFIG2, _WRT_OFF & _BOR21V

一周热门 更多>