Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 373f1a46 authored by Aishwarya Mallampati's avatar Aishwarya Mallampati
Browse files

Add NB_IOT_NTN

Bug: 380975999
Test: make
FLAG: EXEMPT HAL interface change
Change-Id: Icca431c093ca87afa6f539b60a8b21667ef604b7
parent cc01341d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -71,4 +71,5 @@ enum RadioAccessFamily {
   */
  LTE_CA = (1 << android.hardware.radio.RadioTechnology.LTE_CA) /* 524288 */,
  NR = (1 << android.hardware.radio.RadioTechnology.NR) /* 1048576 */,
  NB_IOT_NTN = (1 << android.hardware.radio.RadioTechnology.NB_IOT_NTN) /* 2097152 */,
}
+1 −0
Original line number Diff line number Diff line
@@ -71,4 +71,5 @@ enum RadioTechnology {
   */
  LTE_CA,
  NR,
  NB_IOT_NTN,
}
+4 −0
Original line number Diff line number Diff line
@@ -52,4 +52,8 @@ enum RadioAccessFamily {
     * 5G NR. This is only use in 5G Standalone mode.
     */
    NR = 1 << RadioTechnology.NR,
    /**
     * 3GPP NB-IOT (Narrowband Internet of Things) over Non-Terrestrial-Networks technology.
     */
    NB_IOT_NTN = 1 << RadioTechnology.NB_IOT_NTN,
}
+4 −0
Original line number Diff line number Diff line
@@ -59,4 +59,8 @@ enum RadioTechnology {
     * 5G NR. This is only used in 5G Standalone mode.
     */
    NR,
    /**
     * 3GPP NB-IOT (Narrowband Internet of Things) over Non-Terrestrial-Networks technology.
     */
    NB_IOT_NTN,
}