Search found 13 matches

by fkeujjpdc
Sat Jun 03, 2017 7:11 am
Forum: Development of MicroPython
Topic: Compile Micropython By MDK or IAR
Replies: 3
Views: 3695

Re: Compile Micropython By MDK or IAR

I've been busy with other things recently, but I've been trying to find a solution in my spare time, so we can discuss it together. MDK and IAR can use GCC, you can correctly compile Micropython, and now the more troublesome is QSTR generation. If we refer to VS project ,we should be able to work out
by fkeujjpdc
Sat Jun 03, 2017 7:05 am
Forum: Development of MicroPython
Topic: How to compile the Project in IAR studio for STM32F429
Replies: 5
Views: 5987

Re: How to compile the Project in IAR studio for STM32F429

I have the same problem,iar can use gcc as it's core compile.but it's difficult to gen qstr
by fkeujjpdc
Tue Apr 25, 2017 7:55 am
Forum: Development of MicroPython
Topic: Compile Micropython By MDK or IAR
Replies: 3
Views: 3695

Compile Micropython By MDK or IAR

hi, in this forum i learn much knowledge about micropython .thanks very much. this time , i want add micropython to my project,then provide a python interface to user,it will be simple to use my product. if it can be compile by MDK or IAR is very greatful. it will be debug simpile and modify simpile...
by fkeujjpdc
Wed Apr 05, 2017 1:14 am
Forum: Development of MicroPython
Topic: what's mean $(call compile_c)
Replies: 1
Views: 1985

what's mean $(call compile_c)

in the 294th line of py.mk ,what does the

Code: Select all

 $(call compile_c)
mean,what does it do? i can't find information about it from internet.
by fkeujjpdc
Wed Apr 05, 2017 1:08 am
Forum: Development of MicroPython
Topic: what filesystem used by micropython
Replies: 3
Views: 3627

Re: what filesystem used by micropython

i got it,thanks :D
by fkeujjpdc
Sat Apr 01, 2017 3:29 am
Forum: Development of MicroPython
Topic: what filesystem used by micropython
Replies: 3
Views: 3627

what filesystem used by micropython

hi,what filesystem used by micropython,in windows and unix port it seems used standard library. but i can't find stm port filesystem.
by fkeujjpdc
Tue Mar 28, 2017 2:53 pm
Forum: Development of MicroPython
Topic: what different from PORT BUILTIN
Replies: 2
Views: 2698

Re: what different from PORT BUILTIN

thanks for your patience ,i got it
by fkeujjpdc
Tue Mar 28, 2017 2:45 pm
Forum: Development of MicroPython
Topic: what the advantages of QSTR
Replies: 2
Views: 3240

Re: what the advantages of QSTR

your reply is very detail and wonderful,i got mush knowledge about QSTR from you ,thanks.
by fkeujjpdc
Tue Mar 28, 2017 7:35 am
Forum: Development of MicroPython
Topic: what the advantages of QSTR
Replies: 2
Views: 3240

what the advantages of QSTR

what the advantages of QSTR,it's only to avoid duplication of strings and reduce rom size?
Micropython uses a hash table index string but does not faster than original string.
by fkeujjpdc
Tue Mar 28, 2017 3:14 am
Forum: Development of MicroPython
Topic: what different from PORT BUILTIN
Replies: 2
Views: 2698

what different from PORT BUILTIN

Code: Select all

MICROPY_PORT_BUILTIN_MODULES   MICROPY_PORT_BUILTIN_MODULE_WEAK_LINKS   MICROPY_PORT_CONSTANTS
these three marco is seems same,why split three marco ,What are the details they different。
if i want export a class or function,which marco is better for me.