awaisaamir
Newbie level 6
- Joined
- Nov 14, 2012
- Messages
- 14
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Location
- Rawalpindi, Pakistan
- Activity points
- 1,357
hy
i recently start working with ATmega128 , i program it but i cant get output but in proteus it show output. i use avr studio 6
i post code here
thanks.
i recently start working with ATmega128 , i program it but i cant get output but in proteus it show output. i use avr studio 6
i post code here
Code:
#include <avr/io.h>
int main(void)
{
DDRD=0xFF;
while(1)
{
//TODO:: Please write your application code
PORTD=0xF0;
}
}
thanks.
Last edited by a moderator: