⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 a2dpd

📁 蓝牙通讯协议中A2DVP应用的程序
💻
字号:
#!/bin/sh## a2dpd:	Start/stop a2dp-avrcp server## chkconfig:	2345 26 90# description:	a2dp-avrcp server; sends hi-fi stereo audio to\#               bluetooth enabled headphones. avrcp emulates lircd.## Source function library.. /etc/rc.d/init.d/functionsstart(){	echo -n $"Starting A2DP-AVRCP server:"	daemon /usr/sbin/a2dpd.py	touch /var/lock/a2dpd	echo ""}stop(){	echo -n "Stopping A2DP-AVRCP server:"	killproc python /usr/bin/a2dpd.py	rm -f /var/lock/a2dpd	echo ""}case "$1" in  start)	start	;;  stop)	stop	;;  restart|reload)        stop        start        ;;  status)        status python /usr/bin/a2dpd.py        ;;  *)        echo $"Usage: $0 {start|stop|restart|reload}"        exit 1	;;esacexit 0

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -