esp32/modnetwork: Re-enable PPP support for IDF-SDK >=v4.

PPP support was disabled in 96008ff59a -
marked as "unsupported" due to an early IDF v4 release.  With the currently
supported IDF v4.x version - 4c81978a - it appears to be working just fine.
This commit is contained in:
Mirko Vogt
2020-09-16 23:57:40 +00:00
committed by Damien George
parent 52d6eeb409
commit ecb36d2439
2 changed files with 1 additions and 4 deletions

View File

@@ -26,7 +26,6 @@
* THE SOFTWARE.
*/
#if !MICROPY_ESP_IDF_4
#include "py/runtime.h"
#include "py/mphal.h"
#include "py/objtype.h"
@@ -284,5 +283,3 @@ const mp_obj_type_t ppp_if_type = {
.name = MP_QSTR_PPP,
.locals_dict = (mp_obj_dict_t *)&ppp_if_locals_dict,
};
#endif // !MICROPY_ESP_IDF_4