tcpipchip
tcpipchip
Ported now to VISUINO https://lom204-cli-wisol.blogspot.com/2022/01/importante-opcao-nao-oficial-da-wisol.html
i am not sure, but to use the TOBY-L2 with GSM GENERIC, you must to use the AT COMMAND to make it work with 2G band RAT at+urat=
Still running well on LA915 (LATIN AMERICA) sir, how can i access the LOG info core_debug( "McpsIndication: ind=%s, status=%s, multicast=%u, port=%u, datarate=%u, pending=%u, size=%u, rxdata=%u, ack=%u, dncnt=%u, devaddr=%08x, rssi=%d, snr=%d,...
Yes, but i want to get access to that Status from my main source code. For example, i want to compare if toString(i->**Status**) = LORAMAC_EVENT_INFO_STATUS_OK, for example...
yes, of course ```c++ void STM32LoRaWAN::MacMcpsConfirm(McpsConfirm_t* c) { // Called after an Mcps request (data TX) when the stack becomes idle again (so after RX windows) strcpy(STAT, toString(c->Status)); core_debug( "McpsConfirm:...
hi @fpistm my workaround is create a extern variable...but i dont like this :) ```c++ char STAT[128]; void STM32LoRaWAN::MacMcpsConfirm(McpsConfirm_t* c) { // Called after an Mcps request (data TX) when...
work around ```C++ void lora_done() { // If, after calling maintain() the library is no longer // busy, then the asynchronous operation has completed, // so check its results. String...
Hi, i config la915.c la915.h to run on stm32 cube ide. Works nice. Want you those files ?
I will first to see if compiles…
I replaced the AU915 parameters by the LA915 parameters, both .C and .H The true is that i modified the AU915.h and AU915.c files, i not created a new on...