mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
release v1.13.3 and packages
This commit is contained in:
parent
701006cb93
commit
d06d41f84f
@ -125,6 +125,8 @@ void PikaCV_Image_read(PikaObj* self, char* path) {
|
||||
}
|
||||
Arg* data_arg = arg_loadFile(NULL, path);
|
||||
if (NULL == data_arg) {
|
||||
pika_platform_printf("PikaCV_Image_read: failed to load file: %s\n",
|
||||
path);
|
||||
return;
|
||||
}
|
||||
Args buffs = {0};
|
||||
|
@ -9,7 +9,6 @@
|
||||
* @brief configuration file
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _FDB_CFG_H_
|
||||
#define _FDB_CFG_H_
|
||||
|
||||
|
2
package/i18n/i18n.pyi
Normal file
2
package/i18n/i18n.pyi
Normal file
@ -0,0 +1,2 @@
|
||||
|
||||
def _(strid: str) -> str:...
|
5
package/i18n/pika_i18n.c
Normal file
5
package/i18n/pika_i18n.c
Normal file
@ -0,0 +1,5 @@
|
||||
#include "i18n.h"
|
||||
|
||||
char* i18n__(PikaObj* self, char* strid) {
|
||||
return strid;
|
||||
}
|
@ -12,7 +12,7 @@ PikaEventListener* g_mqtt_event_listener = NULL;
|
||||
|
||||
void Subscribe_Handler(void* client, message_data_t* msg);
|
||||
|
||||
const uint32_t MQTT_RECONNECTION_EVENT_ID = 0xFFAA0088;
|
||||
const uintptr_t MQTT_RECONNECTION_EVENT_ID = 0xFFAA0088;
|
||||
|
||||
void _mqtt__MQTT___init__(PikaObj* self,
|
||||
char* ip,
|
||||
@ -448,7 +448,7 @@ int _mqtt__MQTT_subscribe(PikaObj* self, char* topic, Arg* cb, int qos) {
|
||||
if (NULL == g_mqtt_event_listener) {
|
||||
pika_eventListener_init(&g_mqtt_event_listener);
|
||||
}
|
||||
uint32_t eventId = hash_time33(topic_str);
|
||||
uintptr_t eventId = hash_time33(topic_str);
|
||||
// __platform_printf("hash_time33(topic_str):%d
|
||||
// \r\n",hash_time33(topic_str));
|
||||
pika_eventListener_registEventCallback(g_mqtt_event_listener,
|
||||
@ -552,7 +552,7 @@ int _mqtt__MQTT_setDisconnectHandler(PikaObj* self, Arg* cb) {
|
||||
if (NULL == g_mqtt_event_listener) {
|
||||
pika_eventListener_init(&g_mqtt_event_listener);
|
||||
}
|
||||
// uint32_t eventId = hash_time33(topic_str);
|
||||
// uintptr_t eventId = hash_time33(topic_str);
|
||||
// __platform_printf("hash_time33(topic_str):%d
|
||||
// \r\n",hash_time33(topic_str));
|
||||
pika_eventListener_registEventHandler(g_mqtt_event_listener,
|
||||
|
943
packages.toml
943
packages.toml
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user