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 chipseller

  1. C

    state machine question

    check that the modulus 5 of the input is zero. If so the number is divisible by 5. VHDL = if (input mod 5) = 0 then output <= 1 else 0; verilog: always @(input) if (input % 5 == 0) output <= 1; else output <= 0; end or something like that. My VHDL is a bit rusty, so you will have to sort out...
  2. C

    SIM900 Customer Flash Loader

    Sorry richdavies, I cannot even find the old version through my normal access channels, nor is it in my list of uploaded files. I think this was a special version that came through a different source sorry C
  3. C

    modelsim file opens another modelsim file

    It sounds like you may have an include statement in your file such that it includes itself....
  4. C

    [SOLVED] CRC-16 Calculation Polynomial Selection

    There is some useful information here: https://www.lammertbies.nl/comm/info/crc-calculation.html. I cannot directly help you but I have found it useful when debugging CRC-based hardware
  5. C

    Simcom Sim908 firmware

    Here is the firmware image and it appears to be the latest. As far as I know it is not possible to recover the image from the device. Also I no longer have an upload tool. C
  6. C

    [PIC] Unable to upgrade sim 900 firmware for email functions

    You need to leave the baud rate at its default of 115200 and make sure yo hold down the PWR button during the entire sequence. You will find much more information in the following thread: https://www.edaboard.com/threads/182804/
  7. C

    SIM900 Customer Flash Loader

    I have some firmware files which are attached but no longer have the USB uploader. Please note that I do not represent Simcom and I am unable to provide any technical information or assistance.
  8. C

    SIM900 Customer Flash Loader

    Here you go...
  9. C

    How to use SIM900 httpSSL?

    The only reference I can find is in here. I assume your firmware version supports it. Post your current fw version (AT+GSV) and I will see if there is a later version available. C
  10. C

    [SOLVED] microcontroller with buil-in ethernet and 4 serial ports

    I would use an FPGA-based SOC with UARTS built in the FPGA fabric. That way you can have as many UARTS as you need. My suggestion is the Microsemi SmartFusion AFS050. Dev tools are free and design should be straightforward. The micro is a Cortex-M3 @ 100MHz
  11. C

    Is there a new Firmeare Version for SIM5218?

    This is the only 5128A firmware version I can find. I do not know if it is correct for you. Please check your existing version and satisfy yourself that it is correct before applying it. Nor can I tell if it will help you or not C
  12. C

    SIM900 Customer Flash Loader

    The firmware posted above is the latest I can find. As far as I know (which isn't very much) EAT is always supported and there is no special firmware version to support it, but I know nothing of multi-tasking support Attached are the Dev IDE 1.07, which is the only version I can find and an old...
  13. C

    [SOLVED] Having Problem with SIM5218.

    Here is build 11 for the 5320A and AD. I found the 5320A in the wrong diectory.
  14. C

    SIM900 Customer Flash Loader

    I do not know the difference between 'sim900a64st firmware and 'sim900a64st_dl firmware, but I have attached them both here.

Part and Inventory Search

Back
Top