PIC18F4550 Externer Oszillator

Ich versuche derzeit, die Konfigurationsbits so einzurichten, dass eine LED mit einem externen 20-MHz-Quarz blinkt. Es funktioniert korrekt mit dem internen Oszillator, macht aber nichts mit dem Quarz und ist nach der Programmierung "Unable to enter debug mode". Ich habe eine scheinbar endlose Vielfalt an Konfigurationsbits ausprobiert, und das Problem mit dem Debug-Modus wird nicht verschwinden. Ich habe auch versucht, den Power-up-Timer zu deaktivieren, aber es hat keinen Unterschied gemacht. MPLab v8.92. Über die Geschwindigkeit und damit PLL-Werte mache ich mir im Moment keine Gedanken, ich will das Ding nur zum Blinken bringen. Irgendwelche Ideen?

Interner Oszillator:

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

#pragma config FOSC = 9
#pragma config WDT = OFF
#pragma config LVP = OFF


void delay(unsigned int ticks)
{
    unsigned int i;
    unsigned int loopSize = 10000 * ticks;
    for(i=0;i<loopSize;i++);
}

void main(void)
{
    OSCCON = 0b01110000; // 8 MHz Oscillator

    TRISA = 0; // Set to output

    while(1)
    {
        LATA = 1; // LED on
        delay(100);

        LATA = 0; // LED off
        delay(100);
     }
}

Geben Sie hier die Bildbeschreibung ein

Externer Oszillator:

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

#pragma config FOSC = HSPLL_HS
#pragma config WDT = OFF
#pragma config LVP = OFF

void delay(unsigned int ticks)
{
    unsigned int i;
    unsigned int loopSize = 10000 * ticks;
    for(i=0;i<loopSize;i++);
}

void main(void)
 {
    TRISA = 0; // Set to output

    while(1)
    {
        LATA = 1; // LED on
        delay(100);

        LATA = 0; // LED off
        delay(100);
     }
}

Geben Sie hier die Bildbeschreibung ein

Antworten (1)

Sie sollten auf MPLAB-X upgraden. Darin befindet sich ein praktisches Fenster zum Einstellen der Konfigurationsbits. Damit bin ich auf folgende Einstellungen gekommen:

// PIC18F4550 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.

// CONFIG1L
#pragma config PLLDIV = 5       // PLL Prescaler Selection bits (Divide by 5 (20 MHz oscillator input))
#pragma config CPUDIV = OSC1_PLL2// System Clock Postscaler Selection bits ([Primary Oscillator Src: /1][96 MHz PLL Src: /2])
#pragma config USBDIV = 1       // USB Clock Selection bit (used in Full-Speed USB mode only; UCFG:FSEN = 1) (USB clock source comes directly from the primary oscillator block with no postscale)

// CONFIG1H
#pragma config FOSC = HSPLL_HS  // Oscillator Selection bits (HS oscillator, PLL enabled (HSPLL))
#pragma config FCMEN = OFF      // Fail-Safe Clock Monitor Enable bit (Fail-Safe Clock Monitor disabled)
#pragma config IESO = OFF       // Internal/External Oscillator Switchover bit (Oscillator Switchover mode disabled)

// CONFIG2L
#pragma config PWRT = OFF       // Power-up Timer Enable bit (PWRT disabled)
#pragma config BOR = OFF        // Brown-out Reset Enable bits (Brown-out Reset disabled in hardware and software)
#pragma config BORV = 3         // Brown-out Reset Voltage bits (Minimum setting)
#pragma config VREGEN = OFF     // USB Voltage Regulator Enable bit (USB voltage regulator disabled)

// CONFIG2H
#pragma config WDT = OFF        // Watchdog Timer Enable bit (WDT disabled (control is placed on the SWDTEN bit))
#pragma config WDTPS = 32768    // Watchdog Timer Postscale Select bits (1:32768)

// CONFIG3H
#pragma config CCP2MX = ON      // CCP2 MUX bit (CCP2 input/output is multiplexed with RC1)
#pragma config PBADEN = ON      // PORTB A/D Enable bit (PORTB<4:0> pins are configured as analog input channels on Reset)
#pragma config LPT1OSC = OFF    // Low-Power Timer 1 Oscillator Enable bit (Timer1 configured for higher power operation)
#pragma config MCLRE = ON       // MCLR Pin Enable bit (MCLR pin enabled; RE3 input pin disabled)

// CONFIG4L
#pragma config STVREN = ON      // Stack Full/Underflow Reset Enable bit (Stack full/underflow will cause Reset)
#pragma config LVP = ON         // Single-Supply ICSP Enable bit (Single-Supply ICSP enabled)
#pragma config ICPRT = OFF      // Dedicated In-Circuit Debug/Programming Port (ICPORT) Enable bit (ICPORT disabled)
#pragma config XINST = OFF      // Extended Instruction Set Enable bit (Instruction set extension and Indexed Addressing mode disabled (Legacy mode))

// CONFIG5L
#pragma config CP0 = OFF        // Code Protection bit (Block 0 (000800-001FFFh) is not code-protected)
#pragma config CP1 = OFF        // Code Protection bit (Block 1 (002000-003FFFh) is not code-protected)
#pragma config CP2 = OFF        // Code Protection bit (Block 2 (004000-005FFFh) is not code-protected)
#pragma config CP3 = OFF        // Code Protection bit (Block 3 (006000-007FFFh) is not code-protected)

// CONFIG5H
#pragma config CPB = OFF        // Boot Block Code Protection bit (Boot block (000000-0007FFh) is not code-protected)
#pragma config CPD = OFF        // Data EEPROM Code Protection bit (Data EEPROM is not code-protected)

// CONFIG6L
#pragma config WRT0 = OFF       // Write Protection bit (Block 0 (000800-001FFFh) is not write-protected)
#pragma config WRT1 = OFF       // Write Protection bit (Block 1 (002000-003FFFh) is not write-protected)
#pragma config WRT2 = OFF       // Write Protection bit (Block 2 (004000-005FFFh) is not write-protected)
#pragma config WRT3 = OFF       // Write Protection bit (Block 3 (006000-007FFFh) is not write-protected)

// CONFIG6H
#pragma config WRTC = OFF       // Configuration Register Write Protection bit (Configuration registers (300000-3000FFh) are not write-protected)
#pragma config WRTB = OFF       // Boot Block Write Protection bit (Boot block (000000-0007FFh) is not write-protected)
#pragma config WRTD = OFF       // Data EEPROM Write Protection bit (Data EEPROM is not write-protected)

// CONFIG7L
#pragma config EBTR0 = OFF      // Table Read Protection bit (Block 0 (000800-001FFFh) is not protected from table reads executed in other blocks)
#pragma config EBTR1 = OFF      // Table Read Protection bit (Block 1 (002000-003FFFh) is not protected from table reads executed in other blocks)
#pragma config EBTR2 = OFF      // Table Read Protection bit (Block 2 (004000-005FFFh) is not protected from table reads executed in other blocks)
#pragma config EBTR3 = OFF      // Table Read Protection bit (Block 3 (006000-007FFFh) is not protected from table reads executed in other blocks)

// CONFIG7H
#pragma config EBTRB = OFF      // Boot Block Table Read Protection bit (Boot block (000000-0007FFh) is not protected from table reads executed in other blocks)

Das sollte die PLL verwenden, um den 20-MHz-Quarz durch 5 zu teilen, um die erforderlichen 4 MHz in die PLL zu bringen, dann wird der Systemtakt vom Ausgang der PLL (96 MHz) geteilt durch 2 genommen, was 48 MHz ergibt. Wenn Sie möchten, können Sie auch USB verwenden, indem Sie den USB-Regler einschalten.

Ohne zu wissen, was Ihr Kristall ist, kann ich nicht sicher sein, aber Sie möchten vielleicht die Lastkapazität auf 33 pF anstelle von 22 pF erhöhen.

Leider haben Ihre Konfigurationsbits das Problem nicht gelöst, und der Versuch mit MPLAB X 2.10 auch nicht. In MPLab 8.92 erhalte ich immer noch die Meldung "Unable to enter debug mode", und in MPLab XI erhalte ich "No source code lines were found at current PC 0x0", während ich versuche, in den Debug-Modus zu wechseln. Ich habe 16-MHz-, 20-MHz- und 40-MHz-Quarze, 22-pF-, 68-pF-Kondensatoren und sowohl meine als auch Ihre Konfigurationsbits mit beiden IDEs mit demselben Ergebnis ausprobiert. (Ich habe keine 33pF zur Hand)
Außerdem habe ich versucht, auf MPLABX v2.26 zu aktualisieren. Jetzt geben Ihre Konfigurationsbits den Fehler: Starten konnte keine Verbindung zur Werkzeughardware herstellen: PICkit2PlatformTool, com.microchip.mplab.mdbcore.pickit2.PICkit2DbgToolManager Der Debugger konnte nicht gestartet werden. Beenden der Debug-Sitzung. Benutzerprogramm beendet ... Und meine Konfigurationsbits geben den Fehler: Starten des Programmierziels Keine Quellcodezeilen wurden auf dem aktuellen PC 0x0 gefunden Benutzerprogramm gestoppt Benutzerprogramm beendet
Das PICkit2 wird nicht vollständig unterstützt. Tatsächlich funktioniert mein PICkit2-Klon nicht vollständig - hat es nie getan. Ich muss pk2cmd verwenden, um es zu verwenden. Ich verwende mein PK3 von MPLAB-X und mein PK2 aus anderen freundlicheren Umgebungen.
Das Pickit2 ist definitiv nicht das Problem, ich habe gerade die gleiche Schaltung mit einem PIC18F2520 aufgebaut, sowohl für interne als auch für Quarzoszillatoren und alles hat in beiden Fällen gut funktioniert.
Irgendwie scheint das PIC18F4550-Quarzoszillator-Setup ein- und auszuschalten. Das Spielen mit der Hold-in-Reset-Einstellung scheint einen Unterschied zu machen, ob der Chip programmiert wird oder nicht, also scheint es mir ein mplab-Fehler zu sein. Auch das Ändern des PLLDIV-Werts macht einen Unterschied, ob es programmiert wird oder nicht, und ich bin mir nicht sicher, ob das ein Fehler oder mein Mangel an Wissen ist.