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 MRgenius

  1. M

    [51] emWin library with 8051

    i'm going to interface T6963C 128240 GLCD with 8051 MPU i need some help or tutorial on how to use the emWin library
  2. M

    [51] 8051 JTAG (with USB interface) debugger

    i'm looking for JTAG debugger to buy for my microcontoller AT89C51ED2 any suggestion for a good one
  3. M

    seven segment display blinks

    here is a code for a digital clock displayed in 6 7seg i developed it few weeks ago makes sure to insert some delay between each display /*******************************************************************/ void prepareCount(unsigned int decimal){ unsigned char hours,min,sec; unsigned int...
  4. M

    PIC code in C Language

    where did you find this code?
  5. M

    what is the difference between an unsigned char and unsigned int in an 8051 kill compilers?

    Re: what is the difference between unsigned char and unsigned int in 8051 kiel compil I tried this one before and it worked fine ...... i just want to figure out and learn why this happens when i declare it as a local variable - - - Updated - - - i noticed that when i declare it as a global...
  6. M

    what is the difference between an unsigned char and unsigned int in an 8051 kill compilers?

    Re: what is the difference between unsigned char and unsigned int in 8051 kiel compil i couldn't debug the unsigned char variable as there is no generated assembly for it here is a simple program to test void main() { unsigned char count = 0 ; count++ ; count++ ; count++ ; count++ ...
  7. M

    what is the difference between an unsigned char and unsigned int in an 8051 kill compilers?

    Re: what is the difference between unsigned char and unsigned int in 8051 kiel compil I already know that unsigned char is 8 bits while unsigned int is 16 bit my problem is that why i couldn't debug the unsigned char
  8. M

    what is the difference between an unsigned char and unsigned int in an 8051 kill compilers?

    what is the difference between unsigned char and unsigned int in 8051 kiel compiler while i'm trying to debug the code i noticed something wired when i define the variable as unsigned char i noticed there is no generated assembly cod in the dis-assembly window when i convert it to unsigned...
  9. M

    restarting affect on DS12887 RTC

    i'm working on RTC DS12887 i noticed that sometimes when i restart it the control registers values is changed is it normal
  10. M

    8051 with RTC DS12887 problem

    i mean by my question (any suggestion... ) how to control the rate as all RTC codes i met before were reading directly .. do i have to use MCU timer
  11. M

    8051 with RTC DS12887 problem

    ok i removed this statement - - - Updated - - - To summarize: i think my problem is that 1_ keep reading the RTC at high speed many times at each second (any suggestions to solve this) 2_ using method 1 ... it seems i have to use the interrupt pin with it, and this method cann't be used...
  12. M

    8051 with RTC DS12887 problem

    i found the datasheet says also at the end of method 1 description If this interrupt is used, the IRQF bit in Register C should be cleared before leaving the interrupt routine. besides i tried the code without this statement and it has no difference
  13. M

    8051 with RTC DS12887 problem

    i added the first method as following but it result in more time error weather i pooled on UF bit or IRQF i thought i won't need the interrupt pin so i didn't connect it while(1) { if((XBYTE[12] & 0x10)== 0x10){ //looping on UF bit //if((XBYTE[12] & 0x80)== 0x80){ //looping on IRQF bit sec =...
  14. M

    8051 with RTC DS12887 problem

    i think the time error is jumping not contentious , i need to check it again to make sure of that i only write to register A and other time and date regester at initialization here is the code void RTC_init(void){ XBYTE[10] = 0x20; //turn on OSC XBYTE[11] = 0x92; //BCD ,24h ,no dayLight...
  15. M

    8051 with RTC DS12887 problem

    it gives about 1 minute shift per day not only 6 seconds per two days

Part and Inventory Search

Back
Top