Search found 86 matches

by smhodge
Thu Sep 03, 2020 2:05 am
Forum: MicroPython pyboard
Topic: rshell issue
Replies: 4
Views: 2341

rshell issue

I have a pyboard that the SD part of it is toast, I think. Not the card itself but probably the driver or reader or something. At any rate I decided to check it out again so I did a full (not quick) format of a 16GB card and a mass erase/firmware re-install (v1.12 on a v1.1 pyboard) and then opened ...
by smhodge
Tue Sep 01, 2020 4:41 pm
Forum: General Discussion and Questions
Topic: opening existing file on /flash for appending
Replies: 5
Views: 2920

Re: opening existing file on /flash for appending

I just did some more tests. I does not matter if I use close() or not, or if I use mode='a+b', 'w+b' or 'r+b'. In all cases it finds the file on /flash just fine but it opens it with a file length of 0 and thus new writes to it over-write the old contents. BUT, in all cases, the same code lines work...
by smhodge
Tue Sep 01, 2020 2:50 pm
Forum: General Discussion and Questions
Topic: opening existing file on /flash for appending
Replies: 5
Views: 2920

Re: opening existing file on /flash for appending

I don't have a problem writing the data. If I let my code run after it has opened the now new file it writes new data just fine. The problem is I can't get to first base with the "open append" function: it just trashes the old existing file and starts a new one. BUT if i run the same code in the REP...
by smhodge
Tue Sep 01, 2020 2:18 am
Forum: General Discussion and Questions
Topic: opening existing file on /flash for appending
Replies: 5
Views: 2920

opening existing file on /flash for appending

I am trying to open an existing file stored on /flash for appending & reading. It is a binary data file created with a prior run of my code. I can do it just fine from the REPL with the following code: --------------------------- filePath = '/flash/cos.log' file = open(filePath,'a+b') from uos impor...
by smhodge
Sat Jul 18, 2020 12:33 am
Forum: MicroPython pyboard
Topic: /sd gone round 2
Replies: 3
Views: 2066

Re: /sd gone round 2

I tried 2, 16 and 32 GB cards, all formatted FAT. They all work in other pyboards.

Is it robust enough to survive inserting after the board is powered on, even though it might not work until it's done properly?
by smhodge
Fri Jul 17, 2020 3:23 pm
Forum: MicroPython pyboard
Topic: /sd gone round 2
Replies: 3
Views: 2066

/sd gone round 2

Brand-new, out-of-the-box, pyboard v1.1. Connected to it with rshell to see if it was alive and well. It was except, once again, no /sd. Unlike round 1 (months ago) no code had been loaded onto it. The rshell message is the same: "cannot access /sd". I tried full erase & reloading firmware (and upgr...
by smhodge
Fri Jun 19, 2020 7:59 pm
Forum: MicroPython pyboard
Topic: USR switch and MAX6816 debouncer
Replies: 2
Views: 1817

Re: USR switch and MAX6816 debouncer

Ah, got it! Thanks
by smhodge
Fri Jun 19, 2020 5:07 pm
Forum: MicroPython pyboard
Topic: USR switch and MAX6816 debouncer
Replies: 2
Views: 1817

USR switch and MAX6816 debouncer

I an using an external USR switch connected to X17. On an early version of my motherboard I simply put another circuit in parallel with the one on the pyboard v1.1 schematic, complete with 4.7K resistor in series. I could use both the pyboard USR switch and the external switch to trigger the callbac...
by smhodge
Sat May 30, 2020 2:53 pm
Forum: MicroPython pyboard
Topic: /sd gone
Replies: 5
Views: 3062

Re: /sd gone

It happens whether using the rshell utility by dhylands or by simply having the code, including boot.py, on the sd card (which is known to work fine on other pyboards). I'm pretty convinced it is a hardware issue. I recently modified my motherboard slightly and had it refabricated, and it's with 2 o...
by smhodge
Fri May 29, 2020 6:57 pm
Forum: MicroPython pyboard
Topic: /sd gone
Replies: 5
Views: 3062

Re: /sd gone

I only get 'flash' listed.

So by hardware issue do you mean (a) specifically with respect to the /sd card and (b) unfixable except by replacing the entire pyboard?

Thanks