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 Hiroshi_S

  1. H

    [PIC] Why ? if I assign INTOSC in 12F617 uC, same code is programmed in 3 IC's but only one is working fine rest are not.

    I realized the internal clock 8Mhz is same but not stable. each had few percent of error, eg. if I need 104 us of delay, i have to give 116 in the __delay_ms(116) function. it is difficult to implement without external cloak or crystal oscillator. since 104us for each bit in 9600 baud rate...
  2. H

    [AVR] How to make 4x4 as keymodifiers

    you would try like # for mode operation, where in normal operation # is not used, if # key is pressed, you go into another subroutine where multifunction operation can me done, here you can use same pin for multiple purpose operation. and you must activate fault key press system, where you upon...
  3. H

    [PIC] Why ? if I assign INTOSC in 12F617 uC, same code is programmed in 3 IC's but only one is working fine rest are not.

    HI guys, I am using 12f617 uC with internal oscillator with 8Mhz, I programmed three ICs with the same code all hardware are same, but among the three IC only one is working fine and other too was not giving expected output. This code is sample library which i developed for main project. All the...
  4. H

    [SOLVED] unable to understand its execution, kindly help

    Yes, There is no copies, just the pointers. And Thanks your support I was able to proceed this. :) As you can see the code in the function 'fun' and 'fun_one' both of their return type is pointer pointing the location of the value. as you can see in the 'printf' statement, those function are...
  5. H

    [SOLVED] unable to understand its execution, kindly help

    HAHAHA.... its one of the strange code. Well lets not consider this as application oriented rather let us think why this code operates such way. I guess you guys might try to solve and came to output must be 'ThomasMike'. but its output is different. i am curious to know how it works.
  6. H

    [SOLVED] unable to understand its execution, kindly help

    Yes, @KlausST , its for learning purpose for the understanding of pointer and structure. ref link below. find question no.3. C programming Structure and Union Aptitude Questions and Answers (includehelp.com)
  7. H

    [SOLVED] unable to understand its execution, kindly help

    #include <stdio.h> #include <string.h> struct student { char name[20]; }std; char *fun(struct student *tempStd) // pointer { strcpy(tempStd->name,"Thomas"); return tempStd->name; } char *fun_one(struct student *tempStd) { strcpy(tempStd->name,"Mike"); return tempStd->name...
  8. H

    Is it ok to place AT89S52 microcontroller very close to the stepdown transformer?

    Thanks, Klaus... well, I will consider your views. once it's done, I will send the proper screenshots. Thanks lot.
  9. H

    Is it ok to place AT89S52 microcontroller very close to the stepdown transformer?

    Its PCB mount metallic core single phase transformer of 200mA stepped down to 18V, its size is 22x38 and, its distance between uC and transformer is hardly 3mm. and there are relays too in the design.
  10. H

    Knowledge never grows old, learning never end till our soul ascend. So, keep learning.

    Knowledge never grows old, learning never end till our soul ascend. So, keep learning.
  11. H

    Is it ok to place AT89S52 microcontroller very close to the stepdown transformer?

    hi, My PCB size is compact and so i am placing the microcontroller AT89S52 near the transformer, I am worried about its working. I want to know will this design will disrupt the normal working of the microcontroller? Kindly give your valuable feedback.
  12. H

    Error[e16]: Segment IDATA_Z (size: 0x58 align: 0) is too long for segment definition: IAR workbench

    yeah, I noticed too. I am going back to level one to understand again.. hmm..
  13. H

    Error[e16]: Segment IDATA_Z (size: 0x58 align: 0) is too long for segment definition: IAR workbench

    yes.. i got to this point and got stuck. it would be great help if i get little push in this .. I have attached the both ide settings below. Please look into it, if any clue you get kindly help me to understand.

Part and Inventory Search

Back
Top