Hi
I have a S08 demo board called DEMO9S08DZ60 where I am trying to develop some code for a display using parallel port.
The problem is that I can't toggle the pins fast enough.
If I toggle a pin with PWM functionality (for example D1), I get a fine square wave on the scope, But if I try to toggle a pin with analog functionality (for exampe A1) I will get a voltage of 2.34V instead of the square wave
I guess there is something I need to disable before using the analog pins?
here is my code:
ADCSC1_ADCH = 0b11111; //disable AD module
PTASE_PTASE1 = 0; //disable slew rate for A.1
PTAPS_PTAPS1 = 0; //disable INT pin for A.1
ACMP1SC_ACME = 0; //disable analog compare
APCTL1 = 0x00; //disable analog
APCTL2 = 0x00;
APCTL3 = 0x00;
PTADD_PTADD1 = 1; //A.1 as output
PTDDD_PTDDD1 = 1; //D.1 as output
PTDSE_PTDSE1 = 0; //disable slew rate for D.1
while(1) {
PTDD_PTDD1 = 1;
PTAD_PTAD1 = 1;
for(k = 0;k < 5; k++);
PTAD_PTAD1 = 0;
PTDD_PTDD1 = 0;
for(k = 0;k < 5; k++);
}
what am I missing?