Search found 111 matches

by bmarkus
Sat Aug 08, 2015 10:08 am
Forum: Programs, Libraries and Tools
Topic: Executing external program on Linux
Replies: 5
Views: 6861

Executing external program on Linux

Hi,

how can I execute an external program/os shell from the Unix version?

Thanks... Béla
by bmarkus
Sat Aug 08, 2015 10:03 am
Forum: Programs, Libraries and Tools
Topic: Missing modules on Linux
Replies: 4
Views: 4423

Missing modules on Linux

Hi Just built micropython/unix 1.4.4 from source on Linux. In general it works. I tried to import modules listed on http://docs.micropython.org/en/latest/library/index.html page. Most of them are ok, but few standard modules not found: os select struct time Any ide, why they are missing? Thanls... B...
by bmarkus
Fri Jul 10, 2015 6:40 am
Forum: General Discussion and Questions
Topic: BS 6146-1 parallel interface specification?
Replies: 0
Views: 3581

BS 6146-1 parallel interface specification?

Hi I have an old weather station from mid 1980 years equipped with a so called BSI (BS 6146-1) parallel interface (8 data + 5 control lines, TTL levels). Unfortunately I can't find details how interface works. Does anybody have information using control lines, extract of the standard, etc.? As far a...
by bmarkus
Sat May 09, 2015 9:54 am
Forum: Other Boards
Topic: uPython for chipKIT boards (PIC32)
Replies: 0
Views: 3223

uPython for chipKIT boards (PIC32)

Talking about Microchip PIC32 chipKIT boards are good targets to port. There are different boards both with 128k and 512k flash. Great advantage is that board layouts, connectors are mostly compatible to Arduino shields and there are cipKIt boards too. For details see: http://chipkit.net/products/ T...
by bmarkus
Wed Apr 22, 2015 5:44 am
Forum: Hardware Projects
Topic: Self balancing robot
Replies: 49
Views: 71702

Re: Self balancing robot

I love it. Waiting for GitHub code :)
by bmarkus
Wed Apr 15, 2015 9:06 am
Forum: General Discussion and Questions
Topic: deployment and testing of code
Replies: 8
Views: 7037

Re: deployment and testing of code

Under linux, I don't bother unmounting. I just edit the file, copy it across, wait a few seconds for the file writes to finish, press Control-D on the REPL and retest. Occasionally I'm too fast and the file doesn't get written properly. It is a bad parctice, you can't be sure data is really written...
by bmarkus
Tue Apr 07, 2015 5:40 am
Forum: MicroPython pyboard
Topic: Not easily impressed...
Replies: 12
Views: 14949

Re: Not easily impressed...

Talking about Arduino, pyboard has a much higher specs hardware than Arduino boards. But the key differentiator is micropython as others already explained.
by bmarkus
Sun Apr 05, 2015 2:37 pm
Forum: Development of MicroPython
Topic: Non-ARM ports?
Replies: 10
Views: 9916

Re: Non-ARM ports?

Great! Are you planning PIC32 MIPS?
by bmarkus
Wed Mar 18, 2015 7:49 am
Forum: General Discussion and Questions
Topic: another python on micorcontrollers project
Replies: 12
Views: 12828

Re: another python on micorcontrollers project

ChibiOS does not support MIPS nor 8/16-bit PIC architectures.
by bmarkus
Wed Mar 18, 2015 7:32 am
Forum: General Discussion and Questions
Topic: another python on micorcontrollers project
Replies: 12
Views: 12828

Re: another python on micorcontrollers project

One thing I usually check is Python exception support. And none of the existing implementations has something which can be classified as real Python exceptions. I'll tell you why - because it's hard to implement them (you need design VM with them in mind, and then spend bunch of nights to debug the...