David Lehrian

Results 8 comments of David Lehrian

Looking through the debugger log I see the following `--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1655) ->1023^done,stack=[frame={level=\"0\",addr=\"0x000000010040108d\",func=\"main\",file=\"C:\\\\Users\\\\lehrian\\\\Documents\\\\CProjects\\\\HelloWorld\\\\helloworld.cpp\",fullname=\"/cygdrive/c/Users/lehrian/Documents/CProjects/HelloWorld/C:\\\\Users\\\\lehrian\\\\Documents\\\\CProjects\\\\HelloWorld\\\\helloworld.cpp\",line=\"5\",arch=\"i386:x86-64\"}]\r\n"},"seq":709} 1: (1655) ->1023^done,stack=[frame={level="0",addr="0x000000010040108d",func="main",file="C:\\Users\\lehrian\\Documents\\CProjects\\HelloWorld\\helloworld.cpp",fullname="/cygdrive/c/Users/lehrian/Documents/CProjects/HelloWorld/C:\\Users\\lehrian\\Documents\\CProjects\\HelloWorld\\helloworld.cpp",line="5",arch="i386:x86-64"}] --> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1655) ->(gdb)\r\n"},"seq":711} 1: (1655) ->(gdb) ` It appears...

I have finally figured out the issue and the solution is simple. Change the "args" in the tasks.json file from: ``` "args": [ "-fdiagnostics-color=always", "-g", "${file}", "mdns.o", "-o", "${fileDirname}\\${fileBasenameNoExtension}.exe" ],...

I have implemented backlash on this code base as per https://github.com/shooter64738/grbl-mega. My changes are here https://github.com/davidlehrian/grbl-Mega-5X-backlash. If you are interested I can create a pull request and you can integrate...

The problem has to do with sdkconfig Compiler options->Optimization Level. By default it is set to "Debug (-Og)" which causes the debugger to hang when starting gap advertising. If this...

CORRECTION: There still seems to be something funny going on. By changing the Compiler options->Optimization Level from Debug to Debug without optimization I was able to get the debugger to...

I had a similar problem with an ESP32 module and it turned out to be a grounding issue. Make sure ALL ground pins on your STM32 board are attached to...

Hello @aster1cs. The endPacket() method causes the module to perform the actual transmission which can draw a lot of power depending on your TX power setting. I had to add...