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 sabin14

  1. S

    How to break for loop in mikroc

    'Continue' is used to skip the remaining statements and the next iteration is done. Eg: for(;;){ ------------ statement block 1; if(condition to satisfied) continue; ---------------------- statement block 2 } Here 'statement block 2' is skipped when continue instruction is...
  2. S

    Help how to show single character from text in mikroc

    Since A1 is two bytes you need to write it in two successive locations. eg: EEPROM_Write(0x01,code1[0]); //store 'A' EEPROM_Write(0x02,code1[1]); //Store '1' You can use a loop to store all those values: int i; char code1[] = "A1B2C3D4E5F6G7H8"; for(i=0;i<strlen(code1);i++){...
  3. S

    Help how to show single character from text in mikroc

    unsigned char i; char msg[] ="A1B2C3D4E5F6G7H8"; Lcd_Cmd(_LCD_RETURN_HOME); for(i=0;i<strlen(msg);i++){ Lcd_Chr_CP(msg[i]); Lcd_Chr_CP(msg[++i]); Lcd_Chr_CP(' '); } Modify the above code snippet and add to your program.
  4. S

    serially sending data and displaying on lcd but showing garbage data

    See this thread: https://www.edaboard.com/threads/288054/
  5. S

    [SOLVED] doubt regarding the use of break in 'for' loop for a code..

    "break" instruction is used to come out of the for loop. In this case: when error1(i) becomes equal to -0.8735 the loop is terminated.
  6. S

    advantages of vhdl over verilog

    This Comparison might help you: https://www.angelfire.com/in/rajesh52/verilogvhdl.html
  7. S

    Help how to show single character from text in mikroc

    To Display single character use: Lcd_Chr function. Eg: Lcd_Chr(2, 1, code1[3]); Lcd_Chr(2, 1, code1[1]);
  8. S

    How to measure interval time between two pulses!! I have MikroC code.

    Its used to configure adc, ie to select channels etc.. http://www.winpicprog.co.uk/pic_tutorial11.htm This tutorial might help you.
  9. S

    Sending SMS via GSM Modem and PIC controller

    Instead of AT+CMGS= you have used AT+CMGW. Try using the code which I have posted above.
  10. S

    How to measure interval time between two pulses!! I have MikroC code.

    Configure ADCON0 and ADCON1 registers first.
  11. S

    LCD tc1602a not able to display anything with Pic18f4520

    Is your lcd is hd44780 based one?
  12. S

    [SOLVED] jz862 serial antenna code using MikroC language

    Please make it clear that you need to send some data or send some codes from tx and perform conditional operation at the receiver according to it.
  13. S

    Sending SMS via GSM Modem and PIC controller

    I use the following function in my program to send sms using PIC18F4520. It works fine for me. I am not taking any response from the gsm module. If you want response you can just edit the code. void Send_Sms(){ UART1_Init(9600); Delay_ms(100); UART1_Write_Text("AT")...
  14. S

    PIC MikroC I2C Communication Problem.

    Here is the link to datasheet: **broken link removed**
  15. S

    ping sensor HC-SR04 coding using MikroC language

    MikroC is an ANSI C Compiler so the standard c code will work in MikroC.

Part and Inventory Search

Back
Top