Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by Sudhp

  1. S

    PIC Programmer showing error

    Hello Everyone, I am trying to program controller ic PIC16f72 using TL866CS Universal programmer. I have used same code before with another programmer and that was working completely fine. With this programmer showing this error and ic (After programming) not working. Any suggestion...
  2. S

    [SOLVED] Address space overflow in Keil compiler

    Yes this is how i am not getting error and its working fine.... Thanks Everyone...
  3. S

    [SOLVED] Address space overflow in Keil compiler

    Its working.... when i replace dial function with fire_alarm function ..it gives me error..... - - - Updated - - - okk... Then i should use a flag and i can't do any thing in except rise a flag in service routine... Right?? - - - Updated - - - Also In my code i used more than 130 bytes for...
  4. S

    [SOLVED] Address space overflow in Keil compiler

    How?? will you please explain it little bit??
  5. S

    [SOLVED] Address space overflow in Keil compiler

    The code of fire_alarm() function.... void fire_alarm() { ht_temp=0; init_lcd(); delay_ms1(800); Hooter=1; dial(); htr_time = htr_time - ht_temp; init_lcd(); if(htr_time>0) { send_command_lcd(0xc0,"FIRE ACTIVATED\0");//send_command_lcd(); for(i=0;i<htr_time;i++) delay_1min(); }} - -...
  6. S

    [SOLVED] Address space overflow in Keil compiler

    Hello everyone, I am working on a project using AT89s52 and using keil Uvision 4 as compiler.Here i am using uart communication interrupt method.. I am posting it here.... void serial_IT(void) interrupt 4 { char c; start: if (RI == 1) { RI = 0; c = SBUF; if(c <=...
  7. S

    GSM Module voice related problem.

    By using filter circuit at voice output... now i am able to receive good quality voice while receiving voice msg on mob....
  8. S

    GSM Module voice related problem.

    Hello, I am working on a project having 8051 controller and SIM900. In this i have to make call to mobile numbers and send a voice msg. I am using apr2060 voice ic for this purpose in which i have recorded a voice msg. Now problem i am facing is that the voice msg received over mobile...
  9. S

    [SOLVED] Microcontroller freeze after few days....

    Hii everyone, I am working on a project and using At89s52 microcontroller for that...... My problem is micro freezes after few days and stop working...... It's giving me dot on lcd and whole system stops working.... Please help me.......
  10. S

    [51] EEPROM related problem.....

    Thank u so much sir...... :-) It's working now and data is not overlapping...... thank u.... and KlausST sir...u too.... - - - Updated - - - It is working now.....but can u please explain me these line..... send_byte(0xA0 | ( (nam & 0x70) >> 3 ) ); aknowledge(); send_byte((nam 0x0F) << 4)...
  11. S

    [51] EEPROM related problem.....

    I am really sorry for late response.... Sometime circumstances are against u.....anyways "Also the code look to be a bit bulky.." may be sir ,my programming skills r too weak. I have changed program as...... void Save_name_(int lo) { nam=lo; start(); send_byte(0xA0 | ( (nam & 0x70) >> 3...
  12. S

    [51] EEPROM related problem.....

    Thank KlausST and Venkadehsh sir... Actually I am trying this at my hardware.... Due to some reason i m away frm my home....that's why i can't try this right now... I will reply u as soon as possible... Thanks again for helping me so much.....
  13. S

    [51] EEPROM related problem.....

    Venkadesh_M, ya sir.......it is a variable to find the memory location to store data.....name[i] as... for(i=1;i<16;i++) { name[i]=read_byte();aknowledge(); }
  14. S

    [51] EEPROM related problem.....

    it's data word address for eeprom... 24c16 has 128 pages of 16 bytes each... from page 00 to 7f0. although frm the datasheet... 1-AT24C16A, 16K SERIAL EEPROM: Internally organized with 128 pages of 16 bytes each, the 16K requires an 11-bit data word address for random word addressing. 2- A...
  15. S

    [51] EEPROM related problem.....

    We have tested it in segments....still do same thing Whenever we write data at page address 100.....it's get overlapped with page address 00.....

Part and Inventory Search

Back
Top