mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
27 lines
704 B
C
27 lines
704 B
C
#include "GTestTask.h"
|
|
#include "GTestTask_Task.h"
|
|
|
|
static volatile uint64_t tick_ms = 0;
|
|
void GTestTask_Task_platformGetTick(PikaObj* self) {
|
|
tick_ms += 50;
|
|
obj_setInt(self, "tick", tick_ms);
|
|
}
|
|
|
|
void GTestTask___init__(PikaObj* self) {
|
|
if (!obj_isArgExist(self, "testval")) {
|
|
obj_setInt(self, "testval", 8848);
|
|
} else {
|
|
obj_setInt(self, "testval", obj_getInt(self, "testval") + 1);
|
|
}
|
|
}
|
|
|
|
char* GTestTask_Task_returnNullString(PikaObj* self) {
|
|
obj_setErrorCode(self, 3);
|
|
__platform_printf("returnNullString\n");
|
|
return NULL;
|
|
}
|
|
|
|
void GTestTask_test(PikaObj* self, int a, PikaObj* b) {
|
|
__platform_printf("GTestTask_test: %d, %lx\r\n", a, (uintptr_t)b);
|
|
}
|