mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
21 lines
356 B
Bash
Executable file
21 lines
356 B
Bash
Executable file
#!/bin/sh /etc/rc.common
|
|
#
|
|
# Copyright (C) 2009 OpenWrt.org
|
|
#
|
|
|
|
START=99
|
|
|
|
start() {
|
|
for i in down reset up;do
|
|
hciconfig hci0 $i
|
|
done
|
|
hcitool lewladd D0:39:72:B6:43:8A
|
|
hcitool lewladd D0:39:72:B6:18:AA
|
|
sleep 1
|
|
/sbin/btle_alarm
|
|
}
|
|
|
|
stop() {
|
|
hciconfig hci0 down
|
|
killall -9 btle_alarm
|
|
}
|