megacct

Results 17 comments of megacct

@facchinm @alranel guys, any update regarding this issue? This functionality is essential for me and a blocker to my GIGA migration. Thanks for all the work

Hi, I raised #763 last year but received no response. I have converted my code to use mbed::BufferedSerial

This PR #826 made beginAP return an error rather than crash the OS (took me much longer than an 1hr to find)

FYI, In addition to the mbed conf settings mentioned here https://github.com/arduino/ArduinoCore-mbed/pull/966#issuecomment-2385659878, I've also set `compiler.c.extra_flags=-DSOCKET_BUFFER_SIZE=2048` `compiler.cpp.extra_flags=-DSOCKET_BUFFER_SIZE=2048` in my platform local

Hi @schnoberts1, I ran your sketch on my setup for 5mins with 5 sec delay, 5mins with 1 sec delay and for 2mins with 100ms delay - output attached. [output.zip](https://github.com/user-attachments/files/17216446/output.zip)...

Just re-ran your sketch (even thoguh after bedtime) with stock mbedlib and just the SOCKET_BUFFER_SIZE override. It works. Please try p.s. should probably be larger and declared static in arduino::MbedClient::readSocket...

Applied this PR to my GIGA and ran its SDRAM intensive workload for 90mins or so. Nil impact. I will continue running with these changes and report any issues

Hi, you could try changing line 32 of IBusBM.h to add your board: #if defined(ARDUINO_ARCH_MBED) || defined(ARDUINO_UNOR4_MINIMA) n.b. timer won't work so you'll need to set IBUSBM_NOTIMER and call the...

Timer should be disabled in the begin call: IBus.begin(Serial, IBUSBM_NOTIMER); Not sure if this will make a difference as you are calling the loop yourself already