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 Strike_UN

  1. S

    i got very weird problem with keypad with pic24......

    in proteus there is no need to add power supply its auto supplied and if u tryed to connect it like that both lcd and pic will work properly the problem in the keypad nothing more
  2. S

    i got very weird problem with keypad with pic24......

    iam just doing simple keypad with pic24 but i dont know why its not working properly here is my code sbit enter at portg.b2; sbit LCD_RS at LATD0_bit; sbit LCD_EN at LATD1_bit; sbit LCD_D4 at LATB0_bit; sbit LCD_D5 at LATB1_bit; sbit LCD_D6 at LATB2_bit; sbit LCD_D7 at LATB3_bit; sbit...
  3. S

    external memory interface

    thx for replying and ye i found its library in mikroc and i think it will solve my problem tyvm
  4. S

    external memory interface

    wow lol wht agreat forum thx for caring!!!!!!!!
  5. S

    external memory interface

    inorder to solve my memory problems with pic18f8722 i decided to use external ram with my project but i dont know from where i should start so can some 1 give me the start point with materials or anything to understand how to do it in h/w and in coding any help with be appreciated and thx in...
  6. S

    how to modify variable stored in rom?

    Sooo u cant for example call it in ram make the changes u want and then store it back in Rom thats not possible?
  7. S

    how to modify variable stored in rom?

    sorry but iam kinda beginner so i still dont get it can u show it to me how to do in my program? i identified array like that const unsigned long sbox1[256]={0xd1310ba6, 0x98dfb5ac, 0x2ffd72db, 0xd01adfb7, 0xb8e1afed, 0x6a267e96, 0xba7c9045, 0xf12c7f99, 0x24a19947, 0xb3916cf7, 0x0801f2e2...
  8. S

    how to modify variable stored in rom?

    iam using mikroc in coding and compiling and if its possible can u show me example coding of how to do it and thx in advance
  9. S

    how to modify variable stored in rom?

    iam currently using pic18F252 but i can change to any other 18 pic if it will help me solve this problem
  10. S

    how to modify variable stored in rom?

    hello i had to store array in the Rom cause it took alot of memory space in the Ram and now i wanna change the array element while its being saved in the Rom or call it in ram element by element to change it how i do that? and thx in advance
  11. S

    [SOLVED] help in arrays in mikroc

    ye i used it it solved my problem easily now i understand wht it exactly do that sure will come in handy alot thx alot for the info :smile:
  12. S

    [SOLVED] help in arrays in mikroc

    i didnot know such operation existed more simple this way thanks alot :-)
  13. S

    [SOLVED] help in arrays in mikroc

    well its just that the array will be part of big calculations and i didnot want to make it more complex with pointers just to re-organize it but since there isnot much option left i will just do it as u said and thanks alot for the help
  14. S

    [SOLVED] help in arrays in mikroc

    ok i readed ur other posts and i got it and thats my test program long x=0x3fa2345e; long tmp; void main() { while(1){ union{ long y2; short int y[4]; }mu, *pm; mu.y2=x; tmp=mu.y2; } } the only problem left for me is instead of y=[3f,A2,34,5E] it write it opposite y=[5E,34,A2,3F] how i solve...
  15. S

    [SOLVED] help in arrays in mikroc

    hi every 1 iam beginner in mikroc so iam having problems using arrays in mikroc and now iam stuck in 1 of it my problem now is i want to put result of 32-bit of hexadecimal form to array of 4 element each element must be 8bit only to do xor later with another array of same length for example i...

Part and Inventory Search

Back
Top