Hi
I used arduino ske. to develop atmega32
by this github info:
by flashing .hex file that compiled to temp file
like this :
C:\Users\Arashsoft\AppData\Local\Temp\arduino_build_95211\sketch_jan06c.ino
But the problem is PWM waves doesn't work
they work like a digital pulse
here is the code:
void setup() {
// put your setup code here, to run once:
pinMode(13, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
int i =0;
while(i<1022)
{
i++;
analogWrite(13,i);
delay(20);
}
}
and setting :
the output just flashing not fading
like this
0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,,1000,1000,1000,1000,0,0,0,0,0,0,0,0