summaryrefslogtreecommitdiff
path: root/firmware/s1224/src/common/crystal_steer.c
blob: 863b7b1feda75732f9b2bcbf9642aa38de50a2d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Softmodem product — no crystal mux / no TCM3105 XTAL steering.
 * SPDX-License-Identifier: GPL-3.0-or-later
 */
#include "crystal_steer.h"

static bool g_applied;

void crystal_steer_apply(void)
{
    g_applied = true;
}

bool crystal_steer_applied(void)
{
    return g_applied;
}
git clone -b <branch> https://cgit.mode42.com/<repo>.git
git clone -b <branch> git://cgit.mode42.com/<repo>.git

info@mode42.com