summaryrefslogtreecommitdiff
path: root/recipes-bsp/multitech/mts-io/mts-io.mtp.init
blob: d8f8564a21eefb1bcebe60092205c7f572870121 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash

lora_init() {
  # reset lora chip
  mts-io-sysfs store lora-reset 0
}

cell_init() {
  # remove /dev/modem_at[0,1] symlinks
  rm -f /dev/modem_at[0,1]

  # power down the cellular chip gracefully
  mts-io-sysfs store radio-power 0

  # power up the cellular chip
  mts-io-sysfs store radio-power 1
}

case $1 in
  start)
    echo "Loading mts-io module"
    modprobe mts_io
    lora_init
    cell_init &
    ;;

  stop)
    echo "Unloading mts-io module"
    modprobe -r mts_io
    ;;

  *)
    echo "Usage: $0 {start|stop}"
    exit 2
    ;;
esac