Attila Tőkés

Results 18 comments of Attila Tőkés

@thibault-martinez, did you got any progress on the ESP implementation? I see there is a [esp32](https://github.com/thibault-martinez/iota.lib.cpp/tree/esp32) branch in the repo, but has no commits.

Seems that, we have a solution to use the **HSP profile** with **Raspberry Pi 3**’s built in **BCM43438** chip. The culprit was the so called **SCO audio routing**. **HSP** /...

@kp339, the sound is a little noisy for me too. I contacted the Cypress's support, their FW team is checking the CYW43438's firmware right now.

The problem was identified as a **timing issue** in **PulseAudio**. In an nutshell, PulseAudio uses a hard-coded (e)SCO packet size of 48 bytes, instead of using the packet size negotiated...

@CliveWongTohSoon, check out the following page: [Running PulseAudio as System-Wide Daemon](https://www.freedesktop.org/wiki/Software/PulseAudio/Documentation/User/SystemWide/)

Never tried to build the library on MacOS... Have you managed to build the main (shared library) project successfully? This should produce a shared library (.so, or may be .dylib...

The library should be picked up from the location defined in `demo1.pro`: https://github.com/bluetiger9/SmtpClient-for-Qt/blob/v1.1/demos/demo1/demo1.pro Looking at it, I'm not sure if the library setting are picked up on MacOS. I would...

Under Windows, when used as library import the `SMTP_MIME_EXPORT` macro from the headers files will resolve to: ``` #define Q_DECL_IMPORT __declspec(dllimport) ``` which I think is needed when importing stuff...

I haven't compiled the library under Windows for a while, but I did it today _(on Windows 10)_. It worked with the latest QT 6 install, with MinGW and QT...