1# Copyright (c) 2024 Norik Systems
2# SPDX-License-Identifier: Apache-2.0
3
4description: |
5  The Octopus SoM provides the user 2 options for connecting
6  a SIM card to the nRF9160. Option one is to use on-board eSIM or
7  external nano SIM. Which SIM is used can be selected using the 'sim'
8  property of the 'sim_select' dt node.
9
10compatible: "norik,sim_select"
11
12include: base.yaml
13
14properties:
15  sim-gpios:
16    type: phandle-array
17    required: true
18    description: Pin used to select which SIM is used
19
20  sim:
21    type: string
22    required: true
23    enum:
24      - "on-board"
25      - "external"
26    description: SIM choice (on-board eSIM or external nano SIM)
27