CARPLAY版本整理

This commit is contained in:
2025-01-21 16:49:37 +08:00
commit f0fb64e4e6
26542 changed files with 13719676 additions and 0 deletions

View File

@ -0,0 +1,13 @@
#ifndef __CONSOLE_H__
#define __CONSOLE_H__
typedef void (* bt_at_callback)(char * cAtStr);
int console_init(bt_at_callback cb);
void console_register_cb(void *ctx, bt_at_callback cb);
int console_send_atcmd(char * cAtCmd, unsigned short length);
int console_deinit(void);
#endif