Search found 28 matches

by safetyfactorman
Sun Apr 07, 2019 3:53 pm
Forum: General Discussion and Questions
Topic: ebay clone micropython board
Replies: 5
Views: 3187

Re: ebay clone micropython board

ok. I successfully reflashed the fake pyboard as follows: sudo dfu-util --alt 0 -D pybv11-dp-thread-20190125-v1.10.dfu dfu-util 0.8 ... >>>import os >>>os.uname() >>>(sysname='pyboard', nodename='pyboard', release='1.10.0', version='v1.10 on 2019-01-25', machine='PYBv1.1 with STM32F405RG') >>> >>> i...
by safetyfactorman
Sat Apr 06, 2019 6:26 pm
Forum: General Discussion and Questions
Topic: ebay clone micropython board
Replies: 5
Views: 3187

Re: ebay clone micropython board

i will try it. thanks!
by safetyfactorman
Sat Apr 06, 2019 5:41 pm
Forum: General Discussion and Questions
Topic: ebay clone micropython board
Replies: 5
Views: 3187

ebay clone micropython board

I recently bought a "clone" micropython board on ebay, thinking that it was a real one. The board claims to be pyboard v1.1, and for all appearances, appears to be identical. I attempted to run a ledflash.py from the uasyncio git repository. My understanding of the default micropython v1.1 image tha...
by safetyfactorman
Tue Mar 12, 2019 7:33 pm
Forum: Other Boards
Topic: stm32f446re micropython
Replies: 1
Views: 1708

Re: stm32f446re micropython

Have you seen:

viewtopic.php?f=12&t=3421&p=19989&hilit ... 446#p19989

I am interested also.
by safetyfactorman
Fri Feb 06, 2015 12:35 am
Forum: Development of MicroPython
Topic: Micro Python development wish list
Replies: 52
Views: 47340

Re: Micro Python development wish list

Bryan, thank you for your response. what you described is very much in the direction that i would be interested. the maxim integrated reference plc design backplane communication could be CAN, or some other standards based communication protocol that is already implemented, or could be easily implem...
by safetyfactorman
Thu Feb 05, 2015 5:23 pm
Forum: Development of MicroPython
Topic: Micro Python development wish list
Replies: 52
Views: 47340

Re: Micro Python development wish list

maxim integrated has a micro plc reference design. the micro plc architecture is discussed in one of the videos on the page. http://www.maximintegrated.com/en/design/videos.html#popupmodal The arduino world is not industrial grade. i would like to be able to use micropython to control this kind of h...
by safetyfactorman
Wed Feb 04, 2015 7:01 pm
Forum: Development of MicroPython
Topic: Micro Python development wish list
Replies: 52
Views: 47340

Re: Micro Python development wish list

the other idea is to have a default string size, and then defragment for all strings greater than the default size. for the strings that are < default size, fragmentation is not a problem. it then becomes a statistical problem as to what the default string size should be. default string size is unde...
by safetyfactorman
Wed Feb 04, 2015 5:34 pm
Forum: Development of MicroPython
Topic: Micro Python development wish list
Replies: 52
Views: 47340

raid 0 & module reload for micropython

I hope I'm not out of line, but maybe a solution to the problems of micropython is to throw (more) hardware at it. first, i dont know if python has a module reload, or class/type reload function, or an instance reload/memcopy, but if it did, it might allow the programmer to manage memory. the functi...