release v1.13.3 and packages

This commit is contained in:
lyon1998 2024-03-02 16:17:57 +08:00
parent 701006cb93
commit d06d41f84f
6 changed files with 490 additions and 469 deletions

View File

@ -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};

View File

@ -9,7 +9,6 @@
* @brief configuration file
*/
#ifndef _FDB_CFG_H_
#define _FDB_CFG_H_

2
package/i18n/i18n.pyi Normal file
View File

@ -0,0 +1,2 @@
def _(strid: str) -> str:...

5
package/i18n/pika_i18n.c Normal file
View File

@ -0,0 +1,5 @@
#include "i18n.h"
char* i18n__(PikaObj* self, char* strid) {
return strid;
}

View File

@ -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,

File diff suppressed because it is too large Load Diff