Bonjour, je voulais changer mon mode de fonction de mon pic dans le registre config1H de mon pic mais le probleme est que MPLAB me dit qu'il ne connait pas config1H. J'ai donc ouvert le fichier.h de mon pic mais il n'y a pas cette structure. Auriez vous une idée ou il pourrait se situé? Quel fichier .h manque t'il?
#include <stdio.h>
#include <p18f2525.h>
#include <delays.h>
#pragma config WDT = OFF
void init_PWM(void)
{
PR2 = 0b00011000 ;
T2CON = 0b00000100 ;
CCPR1L = 0b00001100 ;
CCP1CON = 0b00011100 ;
}
void main(void)
{
OSCCON=0b01100111; //F=4Mhz
ADCON1=0x0F; // Defined as analogical
TRISA=0x00; // PORTA defined as out
TRISB=0xFF; // PORTB defined as in
TRISC=0xFB; // PORTC defined as in but CCP1 as out
PORTA=0xFF; // Out all active
PORTB=0x00;
PORTC=0x00;
init_PWM();
// TRISC=0xFF; // Deactivate CCP1 so PWM
while(1)
{
}
}
Merci,
-----