Statistics: Posted by magdaleneratna — Fri Mar 11, 2016 7:01 pm
Statistics: Posted by htjgdw — Thu Feb 04, 2016 4:30 pm
Code:
SUBDIRS= \
user \
driver
Statistics: Posted by ESP_Faye — Thu Feb 04, 2016 3:15 pm
Code:
#include "esp_common.h"
#include "uart.h"
/******************************************************************************
* FunctionName : user_init
* Description : entry of user application, init user function here
* Parameters : none
* Returns : none
*******************************************************************************/
void user_init(void)
{
[color=#FF0000]UART_SetBaudrate(UART0, 115200);[/color]
printf("SDK version:%s\n", system_get_sdk_version());
printf("ESP8266 chip ID: 0x%x\n", system_get_chip_id());
}
Statistics: Posted by htjgdw — Thu Feb 04, 2016 10:02 am