Navigation

    LILYGO

    • Register
    • Login
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Caz
    3. Posts
    C
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 11
    • Best 0
    • Groups 0

    Posts made by Caz

    • RE: Can't download firmware on SIM7600G most of the time.

      @Lilygo Disregard. I successfully upload and run 100%. The cause was USB connection, i.e. connecting to USB 2.0 port makes unreliable.

      posted in Product information
      C
      Caz
    • RE: T-sim7600E don't recognize SD card

      @papbo Does you code have serial port initilization code?

      // Set console baud rate
      SerialMon.begin(115200);
      delay(10);

      // Set GSM module baud rate
      SerialAT.begin(UART_BAUD, SERIAL_8N1, MODEM_RX, MODEM_TX);

      posted in Technical Discussion
      C
      Caz
    • RE: T-sim7600E don't recognize SD card

      @papbo AllFunctions.ino has following code.

      //Initialize SDCard
      SPI.begin(SD_SCLK, SD_MISO, SD_MOSI, SD_CS);
      if (!SD.begin(SD_CS)) {
      Serial.println("SDCard MOUNT FAIL");
      } else {
      uint32_t cardSize = SD.cardSize() / (1024 * 1024);
      String str = "SDCard Size: " + String(cardSize) + "MB";
      Serial.println(str);
      }

      posted in Technical Discussion
      C
      Caz
    • RE: T-sim7600E don't recognize SD card

      @papbo How do you attache the SD? Does its contact side face to the board? Its connector is not fail safe.

      posted in Technical Discussion
      C
      Caz
    • RE: Can't download firmware on SIM7600G most of the time.

      @Lilygo Could you answer? If this is a defect of my device, I want to ask you to replace.

      posted in Product information
      C
      Caz
    • RE: TTGO SIM7000G upload issue

      See https://community.lilygo.cc/topic/30/can-t-download-firmware-on-sim7600g-most-of-the-time for detail.

      posted in Technical Discussion
      C
      Caz
    • RE: TTGO SIM7000G upload issue

      @papbo Can you download firmware every time? It fails 95% on my environment.
      Ubuntu-18.04.6
      arduino 1.8.13

      posted in Technical Discussion
      C
      Caz
    • Can't download firmware on SIM7600G most of the time.

      The failure rate is 95%.I bought http://www.caztech.com/lilygo/sim7600/20211220/DSC_0014.JPG and http://www.caztech.com/lilygo/sim7600/20211220/DSC_0015.JPG at Lilygo official shop. I successfully modify, build, download and run Arduino_TinyGSM/AllFunctions/AllFunctions.ino a couple of times which is confirmed by http://www.caztech.com/lilygo/sim7600/20211220/serial-20211220.png where it tells 180 seconds instead of default 30 sec. When I click upload on Arduino, Arduino can't connect /dev/ttyACM0 as http://www.caztech.com/lilygo/sim7600/20211220/arduino-20212220.png. There is tendency of 100% failure on cold morning and some success on warm evening. Is there anyway to download at 100% success rate?

      posted in Product information
      C
      Caz
    • RE: How to configure Arduino for SIM7600G?

      @lilygo Thank you. I successfully build, download and run all example sketches.

      posted in Build environment
      C
      Caz
    • RE: T-sim7600E don't recognize SD card

      I successfully read SD card on my sim7600g, I mean I have "SDCard Size: 3789MB" when I run examples/Arduino_TinyGSM/AllFunctions/AllFunctions.ino. The SD card is formatted as FAT32 on Windows 10, no partition. I suggest to run one of examples such as AllFunctions.ino first.

      posted in Technical Discussion
      C
      Caz
    • How to configure Arduino for SIM7600G?

      I bought SIM7600G and successfully built one of its sample programs in https://github.com/Xinyuan-LilyGO/LilyGO-T-SIM7600X, Arduino-TinyGSM. However, the web site does not tell how to configure such as board, partition scheme and CPU Frequency. I am glad if someone tell me how to configure them.

      https://www.banggood.com/LILYGO-SIM7600G-H-R2-ESP32-4G-LTE-Cat4-Beidou-GPS-Dual-Frequency-Positioning-ESP32-WROVER-B-Development-Board-p-1875683.html?utm_design=18&utm_email=1634700331_2324&utm_source=emarsys&utm_medium=Shipoutinform190813&utm_campaign=trigger-logistics&utm_content=leander&sc_src=email_2671705&sc_eh=48106b7a55e83f041&sc_llid=31925272&sc_lid=104858042&sc_uid=UPBcqbFWFK&cur_warehouse=CN

      posted in Build environment
      C
      Caz