Search found 4 matches

by vandys
Wed May 03, 2017 1:07 pm
Forum: ESP32 Related
Topic: Standard "AT mode" firmware?
Replies: 3
Views: 4363

Re: Standard "AT mode" firmware?

Ok, I've got it all working. Your console comes out the built-in USB UART, but the AT commands go to a UART on pins IO16 (hook to your extern USB-RS232 TX) and IO17 (your external RX). 115200, and you have to enter each command with \r\n (enter, then control-J) to make it accept the command. I flash...
by vandys
Wed May 03, 2017 11:29 am
Forum: ESP32 Related
Topic: Standard "AT mode" firmware?
Replies: 3
Views: 4363

Re: Standard "AT mode" firmware?

I got it built from that github source; you *have* to use their copy of the devtool environment. If you use the latest, Wifi init fails. With that, it's definitely working, but I can't talk AT to it yet--I suspect it's listening to the wrong UART pins. But I do see the "soft AP" and can ev...
by vandys
Wed May 03, 2017 9:05 am
Forum: ESP32 Related
Topic: ESP32 Blinky Code
Replies: 1
Views: 4164

Re: ESP32 Blinky Code

Similar function within the Espressif compilation environment: #include <stdio.h> #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "driver/gpio.h" #include "sdkconfig.h" #define RLED 16 #define GLED 17 #define BLED 18 void setup() { int x; fo...
by vandys
Tue May 02, 2017 10:06 pm
Forum: ESP32 Related
Topic: Standard "AT mode" firmware?
Replies: 3
Views: 4363

Standard "AT mode" firmware?

What's the easiest way to lay hands on the "classic" AT mode firmware? It seems like some boards come with it as their default
operation, but the ezsbc version appears to just come with a light blink.

Thanks in advance,
Andy