You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
467 B
26 lines
467 B
//
|
|
// Created by MightyPork on 2017/12/15.
|
|
//
|
|
|
|
#ifndef GEX_LOCK_JUMPER_H
|
|
#define GEX_LOCK_JUMPER_H
|
|
|
|
#include "plat_compat.h"
|
|
|
|
/**
|
|
* Init the lock jumper subsystem
|
|
*/
|
|
void LockJumper_Init(void);
|
|
|
|
/**
|
|
* Check state of the lock jumper
|
|
*/
|
|
void LockJumper_Check(void);
|
|
|
|
/**
|
|
* Check hardware jumper and load it's value into the settings struct.
|
|
* Does NOT trigger MSC changes or anything else.
|
|
*/
|
|
void LockJumper_CheckInitialState(void);
|
|
|
|
#endif //GEX_LOCK_JUMPER_H
|
|
|