AndrewMagpie

Results 6 issues of AndrewMagpie

I'm new to using nimble, but was using default esp32 BLE library authored by nkolban. When I try build my sketch I get the follow compiler errors: ``` c:/users/ME/appdata/local/arduino15/packages/esp32/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch3/bin/../lib/gcc/xtensa-esp32-elf/8.4.0/../../../../xtensa-esp32-elf/bin/ld.exe: libraries\NimBLE-Arduino\NimBLECharacteristic.cpp.o:...

There is a `bool NimBLEService::start()` But no `bool NimBLEService::stop()`, unlike the nkolban version. How does one stop a service?

In a Visual Studio Windows C++ command line project I get memory leaks for a simple client: ``` sio::client s; s.connect("http://blah.haha"); ``` These are defined: ``` #define ASIO_STANDALONE #define _WEBSOCKETPP_CPP11_STL_...

bug
help wanted

When a service isn't started but is advertised a crash occurs. ``` #define SERVICE_UUID_128 "ca65f688-5a42-4e4a-b19f-e59e70758573" BLEServer* pServer = BLEDevice::createServer(); BLEService * pService128 = pServer->createService(SERVICE_UUID_128); //pService128->start(); //if you dont start a...

bug

When using the default BLE library and advertising a 128 bit followed by a 16 bit advertisement I see both in nRFConnect. When using the nimBLE library I only see...

This occurs inside run-jetty.sh: WARN : Deprecated [name] used in ${jetty.base}/modules/backchannel.mod java.nio.file.NoSuchFileException: tmp/start_8726611471009910032.properties at sun.nio.fs.UnixException.translateToIOException(UnixException.java:86) at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:102) at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:107) at sun.nio.fs.UnixFileSystemProvider.newByteChannel(UnixFileSystemProvider.java:214) at java.nio.file.Files.newByteChannel(Files.java:361) at java.nio.file.Files.createFile(Files.java:632) at java.nio.file.TempFileHelper.create(TempFileHelper.java:138) at java.nio.file.TempFileHelper.createTempFile(TempFileHelper.java:161) at...