Page 1 of 1

SOLVED. print() doesnt echo in ESP8266 daily builds

Posted: Wed Jun 06, 2018 7:19 am
by VladVons
I didnt notice such problem in 1.9.3-XXX
in terminal 1.9.4-XXX builds there is no print output from a *.py, but in REPL everething is ok.

Code: Select all

#boot.py:
print('Hello') # no output

MicroPython v1.9.4-119......
>>> print('Hello') # output ok
Hello

Re: print() doesnt echo in ESP8266 daily builds

Posted: Wed Jun 06, 2018 1:46 pm
by dhylands

Re: print() doesnt echo in ESP8266 daily builds

Posted: Wed Jun 06, 2018 10:35 pm
by VladVons
How to fix it?

daily builds mostly used by developers/testers and any print information is important.
what is the reason to silent the print()?
other info functions dont work too.
micropython.mem_info() etc...

SOLVED. print() doesnt echo in ESP8266 daily builds

Posted: Thu Jun 07, 2018 5:54 am
by VladVons
Found the problem.

in earlier build versions there was not line

Code: Select all

uos.dupterm(machine.UART(0, 115200), 1)
i just owerrided boot.py with my edition with no uos.dupterm