ESPTerm - ESP8266 terminal emulator. Branches: [master] patches, [work] next release
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "ets_sys.h"
|
|
#include "driver/uart.h"
|
|
#include "osapi.h"
|
|
#include "httpd.h"
|
|
#include "io.h"
|
|
|
|
extern uint8_t at_wifiMode;
|
|
|
|
void user_init(void)
|
|
{
|
|
uart_init(BIT_RATE_115200, BIT_RATE_115200);
|
|
httpdInit();
|
|
ioInit();
|
|
os_printf("\nReady\n");
|
|
}
|
|
|