Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ppp-modem: reset pulse is too short on A7672G #9907

Closed
1 task done
tl-sl opened this issue Jun 20, 2024 · 1 comment · Fixed by #9910
Closed
1 task done

ppp-modem: reset pulse is too short on A7672G #9907

tl-sl opened this issue Jun 20, 2024 · 1 comment · Fixed by #9910
Assignees
Labels
Area: WiFi Issue related to WiFi

Comments

@tl-sl
Copy link
Contributor

tl-sl commented Jun 20, 2024

Board

Custom Esp32

Device Description

Simcom A7672G

Hardware Configuration

not relevant

Version

v3.0.1

IDE Name

PlatformIO

Operating System

Linux

Flash frequency

40Mhz

PSRAM enabled

no

Upload speed

115200

Description

Testing ppp-modem on Simcom A7672 using the SIM7600 driver. Reset pulse of 200ms does not trigger reset of the modem.

A7672 datasheet says reset pulse should be 2.5secs, and in my testing anything under 2secs fails to reset.

Looking at other datasheets the pulse time for reset varies significantly across different simcom models, perhaps this value could be made configurable? If so can make a PR for this issue.

Sketch

from ppp library

    perimanSetPinBusExtraType(_pin_rst, "PPP_MODEM_RST");
    digitalWrite(_pin_rst, !_pin_rst_act_low);
    delay(200);
    digitalWrite(_pin_rst, _pin_rst_act_low);
    delay(100);


### Debug Message

```plain
[103772][E][PPP.cpp:311] begin(): Failed to wait for communication

Other Steps to Reproduce

any reset pulse under 2000ms will fail to reset device ending with the above debug message.

I have checked existing issues, online documentation and the Troubleshooting Guide

  • I confirm I have checked existing issues, online documentation and Troubleshooting guide.
@tl-sl tl-sl added the Status: Awaiting triage Issue is waiting for triage label Jun 20, 2024
@me-no-dev
Copy link
Member

If so can make a PR for this issue.

Please do 😄

@VojtechBartoska VojtechBartoska added Area: WiFi Issue related to WiFi and removed Status: Awaiting triage Issue is waiting for triage labels Jun 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area: WiFi Issue related to WiFi
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants