atc
atc copied to clipboard
STM32 LL AT-Command parser
HI, I'm trying to set workflow with ESP8266 to send data to TCP server over AT commands. the atc_command() not wait to correct answer and i need to wait until...
https://github.com/nimaltd/atc/blob/3d673c5d9c24748bbfeb49c53c38c574c0a735fa/atc.c#L74 If the serial open with 115200 8N1, it will transmit a bit in *1/115200 = 0.000086805555555555555555555555555556 s* one frame take *11 * 1 / 115200 = 0.00095486111111111111111111 s* 1...
Hi Nima, In your atc.c file, atc_addSearch() function you are allocation memory as follows: `atc->search[atc->searchIndex] = (char*) atc_alloc(strlen(str) + 1);` However, you do not free the memory afterwards, thus, I...
I am wondering if anyone has had issue preventing the STM32L07 series from sleeping? If so, has anyone found a solution. This lib works great, I would love to use...
Dear Nima, I hope this message finds you well. I wanted to take a moment to sincerely thank you for developing the ATC library—it has been instrumental in simplifying UART...