Search found 8 matches

by Rajendra Waghmare
Thu Jan 23, 2020 11:58 am
Forum: ESP32 boards
Topic: Enabling Ethernet and BLE both on micropython version 1.12 for ESP32
Replies: 16
Views: 8645

Re: Enabling Ethernet and BLE both on micropython version 1.12 for ESP32

I am migrating from Micropython 1.11 to 1.12. In micropython 1.11, I was using urequests module for cloud communication. I had 2 threads communicating with cloud simultaneously. They were working fine. They work fine on 1.12 official release as well. Now, when I run two threads simultaneously using ...
by Rajendra Waghmare
Thu Jan 16, 2020 3:44 am
Forum: ESP32 boards
Topic: Enabling Ethernet and BLE both on micropython version 1.12 for ESP32
Replies: 16
Views: 8645

Re: Enabling Ethernet and BLE both on micropython version 1.12 for ESP32

Thanks Jimmo! I could compile the code and see that both are enabled. I need to do some testing using both simultaneously.
by Rajendra Waghmare
Mon Jan 13, 2020 7:30 am
Forum: ESP32 boards
Topic: Enabling Ethernet and BLE both on micropython version 1.12 for ESP32
Replies: 16
Views: 8645

Re: Enabling Ethernet and BLE both on micropython version 1.12 for ESP32

I tried to build with this # but ran into build errors. CC /home/user/esp/esp-idf-3.3-9jan2020/esp-idf//components/soc/esp32/rtc_wdt.c CC /home/user/esp/esp-idf-3.3-9jan2020/esp-idf//components/soc/esp32/sdio_slave_periph.c CC /home/user/esp/esp-idf-3.3-9jan2020/esp-idf//components/soc/esp32/sdmmc_p...
by Rajendra Waghmare
Fri Jan 10, 2020 9:03 am
Forum: ESP32 boards
Topic: Enabling Ethernet and BLE both on micropython version 1.12 for ESP32
Replies: 16
Views: 8645

Re: Enabling Ethernet and BLE both on micropython version 1.12 for ESP32

Thank you Jimmo for reply. As suggested, I could compile micropython#36f953a2fcc806e72badbea935de8db006a59878 with latest IDF#6ccb4cf5b7d1fdddb8c2492f9cbc926abaf230df. With this the LAN is enabled. However I do not see BLE module is enabled - ubluetooth or bluetooth is not listed in micropython modu...
by Rajendra Waghmare
Thu Jan 09, 2020 10:31 am
Forum: ESP32 boards
Topic: Enabling core 0 in mycropython 1.12 on ESP32
Replies: 1
Views: 4870

Enabling core 0 in mycropython 1.12 on ESP32

Hello there, I am developing an application where I have multiple threads. I want to distribute these threads on 2 CPU cores of ESP32. To achieve this I am trying to use multicore functionality. I have downloaded micropython v1.12 and compiled with esp-idf V3.3. As I can see in the code I can use co...
by Rajendra Waghmare
Thu Jan 09, 2020 5:35 am
Forum: ESP32 boards
Topic: Enabling Ethernet and BLE both on micropython version 1.12 for ESP32
Replies: 16
Views: 8645

Enabling Ethernet and BLE both on micropython version 1.12 for ESP32

Hello there, I have downloaded micropython v1.12 and compiled with esp-idf V4 #310beae373446ceb9a4ad9b36b5428d7fdf2705f with BLE support. I need BLE and ethernet both for my ESP32 application. As I can see in the Makefile either BLE or ETH is compiled conditionally. Please see the code below. ifeq (...
by Rajendra Waghmare
Wed Feb 27, 2019 6:12 am
Forum: General Discussion and Questions
Topic: urequests module issue on ESP32
Replies: 2
Views: 3803

Re: urequests module issue on ESP32

Thank you for your answer.
I recently switched to loboris:https://github.com/loboris/MicroPython_ ... sRAM_LoBo/. Where I am able to use urequests successfully.
from urequests import Response
by Rajendra Waghmare
Tue Feb 19, 2019 7:05 am
Forum: General Discussion and Questions
Topic: urequests module issue on ESP32
Replies: 2
Views: 3803

urequests module issue on ESP32

Hello there, I am working on micropython ESP32 (ESP32-WROVER-B) kit. I am trying to call https GET and POST requests using urequests module. I have installed urequests using upip. It got installed successfully but when I execute dir(urequests) it shows. ['__class__', '__name__', '__path__']. In the ...