Is there any way to disable the bootloader dumping startup information on UART? Should I use UART1 instead?
I am going to make a bridge (connect) ESP8266 to XBEE and this bootloader information is being transferred to XBEE on startup

Regards,
Muris
Postby muris » Sun Nov 02, 2014 4:35 pm
Postby costaud » Mon Nov 03, 2014 3:26 am
Code: Select all
#define FUNC_U0CTS 4
#define FUNC_U0RTS 4
void user_init(void)
{
PIN_FUNC_SELECT(PERIPHS_IO_MUX_MTCK_U, FUNC_U0CTS);//CONFIG MTCK PIN FUNC TO U0CTS
PIN_FUNC_SELECT(PERIPHS_IO_MUX_MTDO_U, FUNC_U0RTS);//CONFIG MTDO PIN FUNC TO U0RTS
SET_PERI_REG_MASK(0x3ff00028 , BIT2);//SWAP PIN : U0TXD<==>U0RTS(MTDO) , U0RXD<==>U0CTS(MTCK)
......
}
Postby muris » Mon Nov 03, 2014 3:29 am
Postby costaud » Mon Nov 03, 2014 11:20 pm
muris wrote:Ok, thank you very much for this.
Also, where can I download the latest "Download Tool" to flash the chip? I am currently using the python version... (I saw your screenshot on another post).
Postby muris » Tue Nov 04, 2014 3:24 pm
Postby DhruvAcharya » Wed Nov 23, 2016 8:11 pm
Code: Select all
//The setup function is called once at startup of the sketch
void setup()
{
Serial.begin(115200);
}
// The loop function is called in an endless loop
void loop()
{
for(uint8_t i=0;i<3;i++)
{
Serial.write(i);
delay(1000);
}
}
Code: Select all
00 01 02 00 01 02 00 01 02 00 01 02
Code: Select all
//The setup function is called once at startup of the sketch
void setup()
{
Serial.begin(115200);
// Swap serial port to continue on other uart.
Serial.swap();
}
// The loop function is called in an endless loop
void loop()
{
for(uint8_t i=0;i<3;i++)
{
Serial.write(i);
delay(1000);
}
}
Code: Select all
01 02 01 02 01 02 01 02
Users browsing this forum: No registered users and 13 guests
Are you new to ESP8266?
Unsure what to do?
Dunno where to start?
Start right here!
Complete listing of the official ESP8266 related documentation release by ESPRESSIF!
Must read here!
Espressif Systems is a fabless semiconductor company providing cutting-edge low power WiFi SoCs and wireless solutions for wireless communications and Internet of Things applications. We are the manufacturer of ESP8266EX.