Hi all, I recently made an ISP parallel port programmer and am trying to program my ATMEGA16L board. I always read the FLASH memory as 0xFF, and always unkown...
good job ... From: Mihai Galos <mihaigalos@...> Subject: [booksbybibin,www.booksbybibin.tk] Re: Wireless RF temperature transmitter and reciever To:...
Hai,        Iam attaching one pdf and two gif document with this e-mail, I think that will help you. Deepak.T.Cherian  Thunder Boyz MooN Boys ... ...
Hello, Â Â Â Â Â Â Â Â Â Â Â Â I am a hobby programmer and I am using AVR mega32, AVR studio 4 for my hobby. So I like to learn how I can give input to an...
ur atmega is dead!!! happened the same with me... i was so frustrated that y its not working... had put 6 months trying to get tht uC working regards gizzmodo ...
Hi Deepak, It is the simplest program based on your requirement #include <avr/io.h> int main(void) { Â int temp; Â DDRC = 0x01; Â DDRB = 0x00; Â while(1) ...
hi, plz guide me how to compile & link a c code with winavr compiler. im new to the avr and having no idea specially with #include & #define kindly help me in...
... oky i have 2 questions: 1)what does this EXACTLY mean (sign by sign): PORTC &= ~(1 << PC0) 2)couldn't it be?: #include <avr/io.h> int main(void) { int...
I am making temperature controller interfacing with lcd and sWitchs. program works fine but after few minutes it reset automatically breaking the forever loop...
As you pointed out the problem can be with WatchDog Timer (WDT). To find out whether it is exactly bcoz of WDT check out whether it resets periodically (after...
hi we are interfacing lcd JHD 162A with ATMEGA8535 but facing some problem. our hardware is ok but i think something is going wrong in software portion. ...
hi i am developing a project requiring a web server to interact with machines. for that i have used a wiz810mj the codes i have got for the same are too big to...
It dosen't sound like a watchdog timer, the watchdog has a maximum 8 seconds on it, depending on the clock prescaler and clock speed, so minutes is not a...
Hi Dorulet PORTC &= ~(1 << PC0) this code is basically for bit addressing i.e to only change the status of single bit. Means Bit 0 of PORT C will be logic 0...
It is fairly hopeless to do anything useful with a web server and this processor. Even if you could mange to squeeze in some flash code, the Ram memory is just...
Hi Dorulet PORTC &= ~(1 << PC0) this code is basically for bit addressing i.e to only change the status of single bit. Means Bit 0 of PORT C will be logic 0...
thank for response we dont have any watch dog timer inour programe. soi will try to solve the problem as per ur suggestion. ... From: Prathamesh Murkute...
Stefan, 1. It is obvious you don't know there is a free TCP/IP Stack ANSI-C compliant and ready to be integrated in embedded projects. 2. You don't know there...
Mihai, Am more than aware of the number of stacks available, use them on a regular basis. Perhaps i was a little over the top with saying this is hopeless, but...
http://tuxgraphics.org/electronics/200611/embedded-webserver.shtml Chk this out. I tried it. but wat i could manage is to get link LED to glow on my web server...