mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-08-16 11:19:48 +00:00
Switch ESP32-S3 KISS modem environments to HWCDC and move outbound KISS writes to a non-blocking queued frame path so loop() and TX completion keep progressing when the host reads slowly. Add native backpressure regression tests and correct the native_kiss_modem test filter so this suite runs directly with pio test.
12 lines
212 B
C++
12 lines
212 B
C++
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
class CayenneLPP {
|
|
public:
|
|
explicit CayenneLPP(size_t) {}
|
|
const uint8_t* getBuffer() const { return nullptr; }
|
|
uint16_t getSize() const { return 0; }
|
|
};
|