Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
xianjimli committed Dec 26, 2023
1 parent 6fc1e2d commit 98722fb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions docs/changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# 最新动态

2023/12/26
* 完善API注释错误(感谢俊杰发现问题)

2023/12/25
* 完善内存管理,支持直接使用OS提供的函数。

Expand Down
2 changes: 1 addition & 1 deletion docs/hardware_req.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ AWTK 基本代码(包括常用控件),在 STM32上编译之后大概 150K。
### 6.控件

一般控件占用100B左右(64位系统会多一些),一般复杂度的应用程序,控件占用内存的峰值小余100K
一般控件占用100B左右(64位系统会多一些),一般复杂度的应用程序,控件占用内存的峰值小于100K

对于低端平台,可以简化界面,关闭后台窗口,以减少内存的需求。

Expand Down
2 changes: 1 addition & 1 deletion src/ext_widgets/gif_image/gif_image.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ BEGIN_C_DECLS
* GIF图片控件。
*
* > 注意:GIF图片的尺寸大于控件大小时会自动缩小图片,但一般的嵌入式系统的硬件加速都不支持图片缩放,
* 所以缩放图片会导致性能明显下降。如果性能不满意时,请确认一下GIF图片的尺寸是否小余控件大小
* 所以缩放图片会导致性能明显下降。如果性能不满意时,请确认一下GIF图片的尺寸是否小于控件大小
*
* gif\_image\_t是[image\_base\_t](image_base_t.md)的子类控件,image\_base\_t的函数均适用于gif\_image\_t控件。
*
Expand Down
4 changes: 2 additions & 2 deletions src/widgets/label.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ typedef struct _label_t {
/**
* @property {int32_t} length
* @annotation ["set_prop","get_prop","readable","persitent","design","scriptable"]
* 显示字符的个数(小余0时全部显示)。
* 显示字符的个数(小于0时全部显示)。
* 主要用于动态改变显示字符的个数,来实现类似[拨号中...]的动画效果。
*/
int32_t length;
Expand Down Expand Up @@ -132,7 +132,7 @@ widget_t* label_create(widget_t* parent, xy_t x, xy_t y, wh_t w, wh_t h);

/**
* @method label_set_length
* 设置显示字符的个数(小余0时全部显示)。
* 设置显示字符的个数(小于0时全部显示)。
* @annotation ["scriptable"]
* @param {widget_t*} widget 控件对象。
* @param {int32_t} length 最大可显示字符个数。
Expand Down

0 comments on commit 98722fb

Please sign in to comment.