Search found 6 matches
- Wed Nov 08, 2017 7:58 am
- Forum: Report Bugs
- Topic: make monitor does not work on Win 7
- Replies: 4
- Views: 7858
Re: make monitor does not work on Win 7
Can you both please run the following two commands in your terminals and post the output: env | grep PATH env | grep -i python Hi, ESP_Angus I'm sorry to be late with the reply. Results: John@PC180717 MINGW32 ~ $ env | grep PATH COMMANDER_PATH=C:\totalcmd PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;....
- Wed Oct 04, 2017 7:21 am
- Forum: General Discussion
- Topic: Problems using Gpio36 as gpio sensor_vp
- Replies: 5
- Views: 11573
Re: Problems using Gpio36 as gpio sensor_vp
Have same problem on GPIO36 (ESP-WROOM-32 board) - fake interrupts on this pin. Internal pull-up & pull-down enabled.
Also two moments:
1) GPIO36 external pull-down 8K - no fake interrupt
2) GPIO36 external pull-up 8K - still getting fake interrupt.
Also two moments:
1) GPIO36 external pull-down 8K - no fake interrupt
2) GPIO36 external pull-up 8K - still getting fake interrupt.
- Fri Sep 29, 2017 5:23 am
- Forum: General Discussion
- Topic: Strange dhcps behavior
- Replies: 1
- Views: 3444
Re: Strange dhcps behavior
seems fixed in commit c65f12bb45b1f956c7327af0d55bb46cb6ad4be2.
- Wed Sep 27, 2017 7:47 am
- Forum: Report Bugs
- Topic: make monitor does not work on Win 7
- Replies: 4
- Views: 7858
Re: make monitor does not work on Win 7
try to change in ".../components/esptool_py/Makefile.projbuild" MONITOR_PYTHON := winpty $(PYTHON) to MONITOR_PYTHON := start $(PYTHON) also i comment this strings: # [ -f $(APP_ELF) ] || echo "*** 'make monitor' target requires an app to be compiled and flashed first." # [ -f $(APP_ELF) ] || echo "...
- Mon Sep 25, 2017 1:53 pm
- Forum: General Discussion
- Topic: Strange dhcps behavior
- Replies: 1
- Views: 3444
Strange dhcps behavior
In WIFI_MODE_APSTA mode, when STA connected - DHCP server (dhcps) on SoftAP interface stops work. If enable dhcps debug (#define DHCPS_DEBUG 1) you may see that dhcp server got DHCPREQUEST, but no any DHCPOFFER on connected device. if disconnect STA interface on esp32 (set wrong ssid or pass) - dhcp...
- Fri Aug 18, 2017 9:06 am
- Forum: General Discussion
- Topic: vTaskSuspendAll on Core0 halt tasks on Core1 too
- Replies: 2
- Views: 6113
vTaskSuspendAll on Core0 halt tasks on Core1 too
As i understood (and see at sources) calling vTaskSuspendAll must suspend tasks just on current core, but it also stops tasks on Core1. Is this right behavior? Test example on ESP32 Core Board V2 (ESP-wroom-32) - just keep pressed button and task on core1 stops print. #include <stdio.h> #include "fr...