Search found 4 matches

by Rich Lion
Tue Dec 28, 2021 3:22 pm
Forum: General Discussion and Questions
Topic: How to support a argv with more than 256 bytes length
Replies: 1
Views: 3295

Re: How to support a argv with more than 256 bytes length

I tried with revert below commit, but have no effect. commit d56bc6e03d842b1a2c91c987ba936752d0c2fe1b Author: Damien George <damien.p.george@gmail.com> Date: Fri Dec 27 23:33:34 2019 +1100 py/obj.h: Use 32-bit shift in MP_OBJ_NEW_QSTR calc for obj-repr D. The qst value is always small enough to fit ...
by Rich Lion
Tue Dec 28, 2021 3:10 pm
Forum: General Discussion and Questions
Topic: How to support a argv with more than 256 bytes length
Replies: 1
Views: 3295

How to support a argv with more than 256 bytes length

Hi team For some purpose, I want my local micropython to process with a long option / argument string, which include more than 256 characters.And I found currently we do not support that. Does anyone know how to modify code to achieve that ? Example failed └─▶ micropython testargv.py '0x62 0x53 0x02...
by Rich Lion
Thu Jun 10, 2021 12:46 am
Forum: General Discussion and Questions
Topic: Can't use help function in interative mode
Replies: 2
Views: 1102

Re: Can't use help function in interative mode

Thanks for your reply. I add the line as you said and do "make clean; make". But help module still can't work. ``` diff --git a/ports/unix/mpconfigport.h b/ports/unix/mpconfigport.h index d838f42b3..f177f67a6 100644 --- a/ports/unix/mpconfigport.h +++ b/ports/unix/mpconfigport.h @@ -66,6 +66,7 @@ #d...
by Rich Lion
Wed Jun 09, 2021 3:24 pm
Forum: General Discussion and Questions
Topic: Can't use help function in interative mode
Replies: 2
Views: 1102

Can't use help function in interative mode

[*][*][*]Hi, Team I am new to micropython. I download the latest code and build for unix port following the instructiong in github readme. But found that I can't use help(module_name) in the micropython interactive mode. Could anyone give a hint. Thanks. Build and Test Host: Ubuntu 18.04 Test Steps:...