28 lines
519 B
C
28 lines
519 B
C
// GPIOs access functions
|
|
// External Interrupts
|
|
// Shordhand functions to read improtant pins
|
|
|
|
|
|
#include "stdint.h"
|
|
#include "stdbool.h"
|
|
|
|
// Check K15 input
|
|
bool BSP_GPIO_K15isSet();
|
|
|
|
// Set On / Off for CLS_Relay
|
|
void BSP_GPIO_ClsOn();
|
|
void BSP_GPIO_ClsOff();
|
|
|
|
|
|
// Set On / Off for peripheral
|
|
void BSP_GPIO_PeriperalsOn();
|
|
void BSP_GPIO_PeriperalsOff();
|
|
|
|
// Set On / Off for 12V Radio Power
|
|
void BSP_GPIO_RadioOn();
|
|
void BSP_GPIO_RadioOff();
|
|
|
|
|
|
void BSP_GPIO_EE24WriteProtectOn();
|
|
void BSP_GPIO_EE24WriteProtectOff();
|