First stab at ESP32-C6 support for TLora-C6

This commit is contained in:
Thomas Göttgens
2024-09-12 22:42:10 +02:00
parent 3d72fbb19e
commit 9527874815
19 changed files with 150 additions and 40 deletions

View File

@@ -45,7 +45,7 @@ template <class T, class U> void APIServerPort<T, U>::init()
template <class T, class U> int32_t APIServerPort<T, U>::runOnce()
{
auto client = U::available();
auto client = U::accept();
if (client) {
// Close any previous connection (see FIXME in header file)
if (openAPI) {