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 akshaybhavsar

  1. A

    Indexing using #define

    Hello, I have to extract packet information which is stored i array.I have to extract each byte. I have to set index for each byte like #define byte1 1 #define byte2 2 I have almost 70 bytes in packet.I cant do it 70 times. I have to do somethning if possible' #define...
  2. A

    [PIC] PIC32 Application Jump to Bootloader code

    you can use Non volatile EEPROM.Whenever Application receives firmware upgrade command,just write flags in EEPROM and then reset the firmware.After reset firmware shall go to bootloader and read EEPROMflag.
  3. A

    [PIC] PIC32mx440f256h controller interfacing with ADC

    Please suggest me what changes need to made?
  4. A

    [PIC] PIC32mx440f256h controller interfacing with ADC

    But that code seems working fine.
  5. A

    [PIC] PIC32mx440f256h controller interfacing with ADC

    int analogRead(char analogPIN) { AD1CON1 = 0x000000E0; AD1CHS = 0; AD1CSSL = 0; AD1CON2 = 0x00000000; AD1CON3 = 0x00001F00; AD1CON1bits.ADON = 1; AD1CHS = analogPIN << 16; // AD1CHS<16:19> controls which analog pin goes to the ADC...
  6. A

    [PIC] PIC32mx440f256h controller interfacing with ADC

    I have code for XC32 compiler but not for C32.
  7. A

    [PIC] PIC32mx440f256h controller interfacing with ADC

    Which compiler version you are using? - - - Updated - - - Install xc32 1.22 version or previous version.This compiler has inbuilt peripheral libraries.Latest XC32 version doesnt have inbuilt peripheral library. - - - Updated - - - You will find examples how tp read ADC using peripheral...
  8. A

    Microcontroller as a web server in local network

    I am aware of external flash.I am anyways going to use external flash.Problem is with UART communication.If I send 100 MB file with 9600 baud-rate.It seems to be very slow/.So on HTTP request(Web page will be loaded with 9600 bps(9600/8=1200 kbps)). - - - Updated - - - Is there any Wi-Fi...
  9. A

    Microcontroller as a web server in local network

    Without using any module.Can I have onboard wi-fi and wi-fi stack is implemented in controllers firmware? - - - Updated - - - I am not suppose to use arduino.I have to use PIC controller. - - - Updated - - - If I use this module and UART communication in between.If I want to display large...
  10. A

    Microcontroller as a web server in local network

    Hi all, I have to store web pages(HTML) in controllers flash memory and read it with browser.For that Please suggest me wifi module. Regards, Akshay
  11. A

    [AVR] microcontroller and sim800c interfaing with Uart interrupt

    Just test your code using hypertermanal & Get it working for SIM00
  12. A

    SIM808 module in application

    How do i resolve this?
  13. A

    SIM808 module in application

    If i choose transparent mode.It will no longer receive AT commands Regards, Akshay
  14. A

    SIM808 module in application

    Hello, I am using SIM808 module in my application.I have to send packets to server every 1 sec.data will have upto 150 bytes including.Below is my command flow. AT+CGREG=1 AT+CREG=1 AT+CSQ AT+CADC //READ ADC AT+CIPSTART=TCP,"ip ADDRESS","PORTNO" AT+CIPSEND=1 SEND DATA I have to...

Part and Inventory Search

Back
Top