Skip to content

Commit

Permalink
update: netdrtv打印上行结果
Browse files Browse the repository at this point in the history
wendal committed Jan 15, 2025
1 parent 7278bf3 commit 5713c50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions project/luatos/src/luat_netdrv_ec618.c
Original file line number Diff line number Diff line change
@@ -16,9 +16,9 @@

static void gprs_dataout(void* userdata, uint8_t* buff, uint16_t len) {
extern BOOL PsifRawUlOutput(UINT8, UINT8 *, UINT16);
LLOGD("gprs 数据上行 %d %p %d", 1, buff, len);
luat_netdrv_print_pkg("上行数据", buff, len);
PsifRawUlOutput(1, buff, len);
// luat_netdrv_print_pkg("上行数据", buff, len);
BOOL ret = PsifRawUlOutput(1, buff, len);
LLOGD("gprs 数据上行 %d %p %d ret %d", 1, buff, len, ret);
}

luat_netdrv_t netdrv_gprs = {

0 comments on commit 5713c50

Please sign in to comment.