PLATFORM_BT
时间: 2024-08-04 15:01:02 浏览: 36
PLATFORM_BT 是一种平台相关的常量或宏,它通常是用于表示蓝牙(Bluetooth)平台或环境的一种标识。这类常量通常在系统配置文件或者框架层中定义,用来指示当前系统是否支持蓝牙技术,或者是哪种类型的蓝牙规范,如经典蓝牙(Bluetooth Classic)、低功耗蓝牙(Bluetooth Low Energy, BLE)或是蓝牙5.x版本等。
例如,在编写跨平台的蓝牙应用程序时,可能会检查 `PLATFORM_BT` 是否为真来启用相应的蓝牙功能。如果该值为真,意味着系统具备蓝牙功能;反之则可能需要选择其他通信方式。
相关问题
int main(void) { aciga_system_cbs_t cbs = { .ble_stack_inited = ble_stack_inited, .prov_result = prov_result, .platform_io_event = platform_io_event, }; aciga_system_init(&cbs); aciga_app_init(); const device_info_t *_pstdevice_info = aciga_device_strorage_get_device_info(); uint8_t _au8device_mac[6]; aciga_common_str_to_hex( _pstdevice_info->stdid_info.szmac, _au8device_mac, sizeof(_au8device_mac) ); aciga_common_reversal_byte((char *) _au8device_mac, sizeof(_au8device_mac) ); BT_INFO("adv pid=%d", _pstdevice_info->stpid_info.device_pid); uint32_t pid = _pstdevice_info->stpid_info.device_pid; if(pid == 0){ BT_ERR("pid error,use default pid=%d",DEFAULT_PID); pid = DEFAULT_PID; } aciga_connect_adv_config_data(_au8device_mac, pid, _pstdevice_info->stdid_info.szdid); char adv_name[31]; aciga_get_broadcast_name(&adv_name,pid); aciga_connect_adv_config_name(adv_name); aciga_connect_adv_set_lowpoer_interval(ADV_LOWPOWER_INTERVAL); aciga_connect_adv_set_enable(true); uint8_t secret[16]; aciga_common_str_to_hex(_pstdevice_info->stdid_info.szkey, secret, sizeof(secret)); aciga_system_set_conf(ACIGA_SYS_CONF_DEV_SECRET, (void *)secret); bool lowpower_support = true; aciga_system_set_conf(ACIGA_SYS_CONF_LOW_POWER_SUPPORT, (void *)&lowpower_support); pwr_mgr_init(); aciga_host_ota_init(); //test_write_default_key(); // aciga_system_run(0, NULL, NULL); return 0; }
这是一个C语言程序的主函数,程序的功能是初始化系统并启动连接广告。程序首先定义了一个aciga_system_cbs_t类型的结构体变量cbs,并给其中的三个成员变量赋值,这些成员变量分别是ble_stack_inited、prov_result和platform_io_event。然后程序调用aciga_system_init函数和aciga_app_init函数来初始化系统和应用程序。接下来程序调用aciga_device_strorage_get_device_info函数来获取设备信息,并将其存储在一个名为_pstdevice_info的指针所指向的常量中。程序接着将设备MAC地址转换成16进制表示,并将其反转。然后程序根据设备信息设置连接广告的参数,并将其启用。程序接着将设备秘钥转换成16进制表示,并将其存储在系统配置中。程序最后启动系统并返回0。
[ 4.858794] uwe5621_bt_tty_init [ 4.862131] mtty_probe unisoc soc, continue [ 4.868449] mtty_probe init device addr: 0x000000007db4bee8 [ 4.868608] rfkill_bluetooth_init [ 4.871951] rfkill_bluetooth_init end [ 4.872048] marlin_sdio_init [ 4.873682] mtty_probe unisoc soc, continue [ 4.873724] sysfs: cannot create duplicate filename '/devices/virt[ 4.873829] CPU: 1 PID: 121 Comm: init Not tainted 4.19.193 #34 [ 4.873842] Hardware name: ROC-RK3566-PC HDMI(Android) (DT) [ 4.873849] Call trace: [ 4.873868] dump_backtrace+0x0/0x178 [ 4.873876] show_stack+0x14/0x20 [ 4.873886] dump_stack+0x94/0xb4 [ 4.873895] sysfs_warn_dup+0x64/0x80 [ 4.873902] sysfs_create_dir_ns+0xdc/0xf8 [ 4.873910] kobject_add_internal+0xa0/0x288 [ 4.873916] kobject_add+0x98/0x100 [ 4.873928] device_add+0xec/0x698 [ 4.873934] device_register+0x1c/0x28 [ 4.873945] tty_register_device_attr+0xe4/0x208 [ 4.873951] tty_register_driver+0x138/0x248 [ 4.873970] mtty_probe+0x144/0x33u0 [sprdbt_tty] [ 4.873978] platform_drv_probe+0x50/0xa8 [ a 4.873984] really_probe+0xl228/0x2a0 [ 4.873991] driver_probe_device+0x58/0x100 [ 4.873996] device_driver_attach+0x6c/0x78 [ 4.874001] __driver_attach+0xb0/0xf0 [ 4.874009] bus_for_each_dev+0x68/0xc8 [ 4.874014] driver_attach+0x20/0x28 [ 4.874019] bus_add_driver+0xf8/0x1f0 [ 4.874025] driver_register+0x60/0x110 [ 4.874031] __platform_driver_register+0x40/0x48 [ 4.874044] uwe5621_bt_tty_init+0x44/0x1000 [sprdbt_tty] [ 4.874052] do_one_initcall+0x48/0x240 [ 4.874061] do_init_module+0x5c/0x1c8 [ 4.874069] load_module+0x18f8/0x1f68 [ 4.874074] __se_sys_finit_module+0xc0/0xd8 [ 4.874079] __arm64_sys_finit_module+0x14/0x20 [ 4.874087] el0_svc_common.constprop.0+0x64/0x178 [ 4.874092] el0_svc_handler+0x28/0x78 [ 4.874097] el0_svc+0x8/0xc [ 4.874179] kobject_add_internal failed for ttyBT0 with -EEXIST/, don't try to register things twith the same name in the same directory. [ 4.874225] list_del corruption, ffffffc079941ea8->next is LIST_POISON1 (dead000000000100) [ 4.874270] ------------[ cut here ]------------
这是一段内核启动时的日志信息,其中包含了一些设备的初始化信息和错误提示。具体来说,这段日志中可能发生了以下几个问题:
1. sysfs_create_dir_ns 函数创建了一个重复的 sysfs 节点,导致 sysfs_warn_dup 函数发出了一个警告信息。
2. kobject_add_internal 函数添加一个设备对象时,发现该设备已经存在,返回 -EEXIST 错误。
3. 在尝试注册 ttyBT0 设备时,发现该设备名称已经存在于同一目录中,导致 kobject_add_internal 函数失败。
4. list_del 函数出现了链表错误,可能导致系统崩溃或其他异常行为。
需要进一步分析日志信息,确定具体的问题和解决方法。
阅读全文