now using BSP_GPIO

This commit is contained in:
2024-05-18 02:10:29 +02:00
parent 2d903dcf11
commit 467d7c4de9
4 changed files with 108 additions and 5 deletions

View File

@@ -1,3 +1,27 @@
// GPIOs access functions
// External Interrupts
// Shordhand functions to read improtant pins
// 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();