-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python solution:app_upgrade,fixes #1840 #1841
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
2.delete components/csi Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
…close source Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
2.haas700 3.optimize netmgr deinit function of amp 4.close quickjs force GC Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
Signed-off-by: caiyan.cai <caiyan.cai@alibaba-inc.com>
[Detail] Workaround for ethernet spi hardware to prevent dead loops. [Verified Cases] Build Pass: <helloworld_demo@haas100> Test Pass: <helloworld_demo@haas100>
[Detail] Fix documentation on UART API: on() Improve examples in UART doc. [Verified Cases] Build Pass: None Test Pass: None
* modify HaaSPython's brief introduction, fix alibaba#1772 Signed-off-by: ethan.lcz <ethan.lcz@alibaba-inc.com> * add HaaS Python v2.2.0 release notest, fix alibaba#1726 Signed-off-by: ethan.lcz <ethan.lcz@alibaba-inc.com>
* modify HaaSPython's brief introduction, fix alibaba#1772 Signed-off-by: ethan.lcz <ethan.lcz@alibaba-inc.com> * add HaaS Python v2.2.0 release notest, fix alibaba#1726 Signed-off-by: ethan.lcz <ethan.lcz@alibaba-inc.com> * add README for HaaS EDU K1 examples, fix alibaba#1798 Signed-off-by: ethan.lcz <ethan.lcz@alibaba-inc.com>
* modify HaaSPython's brief introduction, fix alibaba#1772 Signed-off-by: ethan.lcz <ethan.lcz@alibaba-inc.com> * add HaaS Python v2.2.0 release notest, fix alibaba#1726 Signed-off-by: ethan.lcz <ethan.lcz@alibaba-inc.com> * add chapter index for examples, fix alibaba#1800 Signed-off-by: ethan.lcz <ethan.lcz@alibaba-inc.com>
[Detail] improve lwip options to fix http test faults [Verified Cases] Build Pass: <py_engine_demo> Test Pass: <py_engine_demo>
[Detail] when CONFIG_FREERTOS_INTERRUPT_BACKTRACE opens, XT_DEBUG_BACKTRACE will open. opening XT_DEBUG_BACKTRACE can backtrace interrupt callchain of thread context although it usually useless, but it EXCSAVEx register. if normal exception occurs, which also uses EXCSAVEx register, and having tail interrupt after current isr, it will crush EXCSAVEx, then system will crash. so based on above, close CONFIG_FREERTOS_INTERRUPT_BACKTRACE. [Verified Cases] Build Pass: none Test Pass: none
…libaba#1719 [Detail] Issue description: Rootcause: Solution: Requirement description: Solution: [Verified Cases] Build Pass: <solution list> Test Pass: <test case list> Signed-off-by: ethan.lcz <ethan.lcz@alibaba-inc.com>
Signed-off-by: ethan.lcz <ethan.lcz@alibaba-inc.com>
[Detail] to open bt on nodemcu32s, need to do things as below. import kv kv.set("disable_bt", "no") 然后重启设备 [Verified Cases] Build Pass: <none> Test Pass: <none>
… thread stack size and optimise memory layout statics. [Detail] on m5stackcore2, with lvgl, linksdk, online update all on,mp_stack stack remains still 3636 when set from 16KB to 8KB. on m5stackcore2, with lvgl, linksdk, online update all on,queue_handler stack remains still 1776 when set from 8KB to 3KB. on m5stackcore2, user logic is placed on mp_task, so mqtt_rec's stack remains 1676 should be enough. mqtt_process only process repub, hearbeat and some event, on m5stackcore2, mqtt_process's stack remains 1504 should be enough. for arm and xtensa, stack should be enough based on current sitution but for esp32_c3 riscv, due to c11 tls, every stack will have another 1KB space, needs to remove it. [Verified Cases] Build Pass: <py_engine_esp32_demo> Test Pass: <py_engine_esp32_demo>
[Detail] Issue description: Rootcause: Solution: Requirement description: Solution: [Verified Cases] Build Pass: <solution list> Test Pass: <test case list> Signed-off-by: wzhiyuan-nit <wuming.wzy@alibaba-inc.com>
[Detail] hal_uart_recv_II returns 0 if no data received, instead of returning EIO. [Verified Cases] Build Pass: eduk1_demo Test Pass: eduk1_demo
- Use printk instead of printf in mm critical region, otherwise, system will crash, specially in SMP system. - Remove "0x" prefix before "%p", "0x" is redundant for "%p".
感谢提交 Pull Requests! |
Security Check : b2f7323 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
python app upgrade
auto build success,number:228 |
autotest fail,number:1712 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good to me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good to me.
No description provided.