How to close this information when wifi config successful

All ESP8266 boards running MicroPython.
Official boards are the Adafruit Huzzah and Feather boards.
Target audience: MicroPython users with an ESP8266 board.
Post Reply
skylin008
Posts: 88
Joined: Wed Mar 11, 2015 6:21 am

How to close this information when wifi config successful

Post by skylin008 » Tue Jan 17, 2017 1:31 am

Hello every one ! When I setting the wifi config :

Code: Select all

wifi.config(essid=ssid)
,when connected successfully ,show this information:#13 ets_task(4020edc0, 29, 3fff95d0, 10)
#14 ets_task(4020edc0, 29, 3fff95d0, 10) ,how to close this information.Thanks!

User avatar
deshipu
Posts: 1388
Joined: Thu May 28, 2015 5:54 pm

Re: How to close this information when wifi config successful

Post by deshipu » Tue Jan 17, 2017 8:51 am

You can either edit the Makefile and change this line:

Code: Select all

# UART for "os" messages. 0 is normal UART as used by MicroPython REPL,
# 1 is debug UART (tx only), -1 to disable.
UART_OS = 0
or you can do it at run time with:

Code: Select all

import esp

esp.osdebug(None)       # turn off vendor O/S debugging messages

skylin008
Posts: 88
Joined: Wed Mar 11, 2015 6:21 am

Re: How to close this information when wifi config successful

Post by skylin008 » Thu Jan 19, 2017 3:49 am

@deshipu Thank you very much!

Post Reply