Open PEConn opened 3 years ago
I use rshell V0.0.28 daily on Pyboards, ESP32 and ESP8266 and have never encountered this. I suggest you check the RTC time on the ESP8266:
>>> from machine import RTC
>>> rtc=RTC()
>>> rtc.datetime()
(2020, 12, 19, 5, 11, 16, 52, 392834)
>>>
Thanks for the suggestion, unfortunately it doesn't look like that's the problem - my RTC looks sane:
>>> from machine import RTC
>>> rtc = RTC()
>>> rtc.datetime()
(2020, 12, 19, 5, 13, 22, 59, 373)
(Also, what is the 5
in both of our outputs? I couldn't find it in the docs.)
it doesn't look like that's the problem
Indeed. I'm foxed. The only thing I can think of (grasping at straws) is to erase flash and reinstall, but maybe you've already done that.
Also, what is the 5 in both of our outputs?
Day of the week. Today you'll see 6. The machine.RTC
documentation is poor.
I hadn't but I did try just now - right after flashing ls -al /pyboard
gives me:
230 Jan 27 2127 boot.py
I wonder if it's something with the device.
Is this issue still present on latest MicroPython? @PEConn
Hello,
I'm using
rshell
to interact with my device, but I think this seems like a core micropython problem (I could be wrong). Here's what's happening:My
rshell
version is0.0.28
and runningimport os;os.uname()
gives me:Maybe I've set something up wrong, any help would be appreciated!