Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compiler error for ESP32-C3 and mbed TLS v2.7.0+ #970

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update AsyncWebSocket.h
  • Loading branch information
khoih-prog committed Aug 3, 2021
commit 24fc8db2480287be3585502487e46fe6acdab35f
6 changes: 6 additions & 0 deletions src/AsyncWebSocket.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
#ifndef ASYNCWEBSOCKET_H_
#define ASYNCWEBSOCKET_H_

#include "mbedtls/version.h"

#if (MBEDTLS_VERSION_NUMBER >= 0x02070000)
#error Must use ESP32 core v1.0.6-, with MBEDTLS_VERSION_NUMBER < v2.7.0
#endif

#include <Arduino.h>
#ifdef ESP32
#include <AsyncTCP.h>
Expand Down