pic16f1829 todos los pines configurados como gpio utput pero RC6, RB7, RB5 y RB6 no cambian de estado cuando se alterna

0

He establecido los bits de tris en cero para configurar todos los pines de pic16f1829 como salida. Todos los pines se alternan cada 2 segundos según mi lógica, pero RC6, RB7, RB5 y RB6 no cambian de estado cuando se alterna.

¿Cuál puede ser la razón, porque también he desactivado todos los demás periféricos?

Actualización:

Este es mi código simple que está fallando:

/* 
 * File:   newmain.c
 * Author: Administrator
 *
 * Created on 22 November, 2017, 9:38 PM
 */

#include <stdio.h>
#include <stdlib.h>

// PIC16F1829 Configuration Bit Settings

// 'C' source line config statements

#include <xc.h>

// #pragma config statements should precede project file includes.
// Use project enums instead of #define for ON and OFF.

// CONFIG1
#pragma config FOSC = INTOSC    // Oscillator Selection (INTOSC oscillator: I/O function on CLKIN pin)
#pragma config WDTE = OFF        // Watchdog Timer Enable (WDT enabled)
#pragma config PWRTE = OFF      // Power-up Timer Enable (PWRT disabled)
#pragma config MCLRE = ON       // MCLR Pin Function Select (MCLR/VPP pin function is MCLR)
#pragma config CP = OFF         // Flash Program Memory Code Protection (Program memory code protection is disabled)
#pragma config CPD = OFF        // Data Memory Code Protection (Data memory code protection is disabled)
#pragma config BOREN = ON       // Brown-out Reset Enable (Brown-out Reset enabled)
#pragma config CLKOUTEN = OFF   // Clock Out Enable (CLKOUT function is disabled. I/O or oscillator function on the CLKOUT pin)
#pragma config IESO = ON        // Internal/External Switchover (Internal/External Switchover mode is enabled)
#pragma config FCMEN = ON       // Fail-Safe Clock Monitor Enable (Fail-Safe Clock Monitor is enabled)

// CONFIG2
#pragma config WRT = OFF        // Flash Memory Self-Write Protection (Write protection off)
#pragma config PLLEN = ON       // PLL Enable (4x PLL enabled)
#pragma config STVREN = ON      // Stack Overflow/Underflow Reset Enable (Stack Overflow or Underflow will cause a Reset)
#pragma config BORV = LO        // Brown-out Reset Voltage Selection (Brown-out Reset Voltage (Vbor), low trip point selected.)
#pragma config LVP = ON         // Low-Voltage Programming Enable (Low-voltage programming enabled)

/*
 * 
 */
int main(int argc, char** argv) {
    ANSELB=0x00;
    ANSELC=0x00;
    TRISB=0x00;
    TRISC=0x00;
  while(1){
      LATB=~LATB;
    }
    return (EXIT_SUCCESS);
}

salida:

RB6 = 0 to 2.0V
RC6 = 0.5 to 1V (even when I am not toggling PORTC) 
RB5 = 0 to 3.3 V but with delay and fluctuations
RB7 = 0.1 to 2.0 V
RB4 = 0 to 3.3V perfect

Tengo una duda de que todos estos pines están relacionados de alguna manera con los puertos MSSP 1 y MSSP2. Entonces, ¿por qué estos no se comportan como un GPIO normal?

He probado el PIC16F1829 en PCB de propósito general y tres placas PCB diferentes, pero el resultado es el mismo.

    
pregunta rajat jain

0 respuestas

Lea otras preguntas en las etiquetas