我正在使用 circuitpython,需要访问 micropython uctypes 模块。我已经从 github 下载了 micropython 文件,但似乎找不到该模块。任何人都可以帮忙吗?
问问题
65 次
2 回答
0
请参阅此CircuitPython 问题:这是已知的事情,看起来没有一个端口实际上启用了 uctypes 模块:为此,MICROPY_PY_UCTYPES
构建时预处理器定义必须非零,这通常在端口的 mpconfigport.h 中设置但这里不是这样。
因此,要么您必须自己构建(参见例如https://learn.adafruit.com/building-circuitpython/),要么将所述定义添加到 mpconfigport.h 中或在命令行中传递它,要么找到替代解决方案(相同链接提到struct
可以使用该模块,这可能确实取决于确切的用例)。
于 2021-11-23T08:14:10.793 回答
0
要在 CircuitPython 7.0 中启用 uctypes,请尝试以下补丁。它对我有用。
--- extmod/moductypes.c.orig 2021-11-27 00:07:08.000000000 +0900
+++ extmod/moductypes.c 2021-11-27 00:11:13.000000000 +0900
@@ -544,7 +544,7 @@
}
} else if (agg_type == PTR) {
- byte *p = *(void **)self->addr;
+ byte *p = *(void **)((void *)self->addr);
if (mp_obj_is_small_int(t->items[1])) {
uint val_type = GET_TYPE(MP_OBJ_SMALL_INT_VALUE(t->items[1]), VAL_TYPE_BITS);
return get_aligned(val_type, p, index);
@@ -574,7 +574,7 @@
mp_int_t offset = MP_OBJ_SMALL_INT_VALUE(t->items[0]);
uint agg_type = GET_TYPE(offset, AGG_TYPE_BITS);
if (agg_type == PTR) {
- byte *p = *(void **)self->addr;
+ byte *p = *(void **)((void *)self->addr);
return mp_obj_new_int((mp_int_t)(uintptr_t)p);
}
}
于 2021-12-03T07:34:46.303 回答