Files
cls_master/Application/BSP/BSP_GPIO.h
2024-05-20 17:44:56 +02:00

33 lines
586 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();
// Check if the headlight is on
bool BSP_GPIO_HeadLightIsSet();