ESP8266 Developer Zone The Official ESP8266 Forum 2023-02-22T18:39:54+08:00 https://bbs.espressif.com:443/feed.php?f=7&t=74970 2023-02-22T18:39:54+08:00 2023-02-22T18:39:54+08:00 https://bbs.espressif.com:443/viewtopic.php?t=74970&p=108519#p108519 <![CDATA[Re: suppress boot msg on ESP8266]]> I used 1N5819 Schottky Barrier Plastic Rectifier.

To start transmission, set the GPIO polarity to OUTPUT and the level to LOW.
This method works pretty reliably.

Code:

void setup() {
   pinMode(GPIO, OUTPUT);
   digitalWrite(GPIO, LOW);
   Serial.begin(115200);
74654209-28084e80-51cd-11ea-8af5-d0c03551a484.jpg

Statistics: Posted by nopnop2002 — Wed Feb 22, 2023 6:39 pm


]]>
2021-07-13T15:02:08+08:00 2021-07-13T15:02:08+08:00 https://bbs.espressif.com:443/viewtopic.php?t=74970&p=100056#p100056 <![CDATA[Re: suppress boot msg on ESP8266]]> https://www.espressif.com/en/contact-us ... -inquiries

Statistics: Posted by Her Mary — Tue Jul 13, 2021 3:02 pm


]]>
2021-06-29T12:35:31+08:00 2021-06-29T12:35:31+08:00 https://bbs.espressif.com:443/viewtopic.php?t=74970&p=100026#p100026 <![CDATA[Re: suppress boot msg on ESP8266]]>
Her Mary wrote:
Those logs are in the ROM code, I'm afraid that you cannot disable them.. Maybe the only way is to swap UART to other pins instead..There is an API `uart_enable_swap`..


Hi, thanks for reply. It happen before main. So if i put swap, it still print.

Thanks in advanced

Statistics: Posted by design4 — Tue Jun 29, 2021 12:35 pm


]]>
2021-06-22T17:55:27+08:00 2021-06-22T17:55:27+08:00 https://bbs.espressif.com:443/viewtopic.php?t=74970&p=100005#p100005 <![CDATA[Re: suppress boot msg on ESP8266]]>
Her Mary wrote:
Those logs are in the ROM code, I'm afraid that you cannot disable them.. Maybe the only way is to swap UART to other pins instead..There is an API `uart_enable_swap`..



Hi master,

It doesnt work. I put in in app_main() and it prints before API `uart_enable_swap`.

Any solution for this? Can I put comment '//' in the source file? Did you know in what file source? It prints in baud 74880

This one also printed. "phy_version: 1159.0, 85b471e, Apr 21 2020, 17:03:08, RTOS new<CR><LF>". It prints in my baud rate 115200. I cannot find in phy_version. I dont want to suppress ESP_LOGI msg because im using it.

Thanks in advance master

Statistics: Posted by design4 — Tue Jun 22, 2021 5:55 pm


]]>
2021-06-21T11:22:56+08:00 2021-06-21T11:22:56+08:00 https://bbs.espressif.com:443/viewtopic.php?t=74970&p=100000#p100000 <![CDATA[Re: suppress boot msg on ESP8266]]>
Her Mary wrote:
Those logs are in the ROM code, I'm afraid that you cannot disable them.. Maybe the only way is to swap UART to other pins instead..There is an API `uart_enable_swap`..


Hi,

Agenda: My agenda is to disable print during power ON as mentioned in previous comment. I also want to use the UART for my AT command. The garbage print is very disturbance when multiple ESP is connected in RS485 line.

1) I have enable uart_enable_swap() in make menuconfig msys32. Upon power ON, still didnt resolve my problem. And anything I print for my UART command, doesnt work anymore.

2) It print before app_main(). If I use uart_enable_swap() in app_main(), it still can print before enter app_main().

Any solution?

Thanks in advanced.

Statistics: Posted by design4 — Mon Jun 21, 2021 11:22 am


]]>
2021-05-20T11:24:48+08:00 2021-05-20T11:24:48+08:00 https://bbs.espressif.com:443/viewtopic.php?t=74970&p=99757#p99757 <![CDATA[Re: suppress boot msg on ESP8266]]> Statistics: Posted by Her Mary — Thu May 20, 2021 11:24 am


]]>
2021-05-18T15:59:40+08:00 2021-05-18T15:59:40+08:00 https://bbs.espressif.com:443/viewtopic.php?t=74970&p=99755#p99755 <![CDATA[suppress boot msg on ESP8266]]>
Im using esp8266 freeertos sdk. esptool.py v2.4.0.

I already do step from this link "https://www.esp32.com/viewtopic.php?t=1658".
Summary:-
1. As mentioned in earlier posts (> 2.5 years ago), strap GPIO15 to ground.
In "make menuconfig"
2. Bootloader config -> Bootloader log verbosity -> (no output)
3. Component config -> Log output -> Default log verbosity (no output)


But, im unable to fully suppress all msg during startup. The device still printing as below at baud 74880.

ets Jan 8 2013,rst cause:2, boot mode:(3,6)

load 0x60000014, len 8, room 16
tail 8


Thanks in advanced

Statistics: Posted by design4 — Tue May 18, 2021 3:59 pm


]]>