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.
30 lines
433 B
30 lines
433 B
/*
|
|
* platform.c
|
|
*
|
|
* Created on: 29.09.2022
|
|
* Author: jonas
|
|
*/
|
|
|
|
#include "platform.h"
|
|
#include "McuLib.h"
|
|
#include "McuWait.h"
|
|
#include "McuLED.h"
|
|
#include "McuGPIO.h"
|
|
#include "McuULN2003.h"
|
|
|
|
void PL_Init(void){
|
|
McuLib_Init();
|
|
McuWait_Init();
|
|
McuGPIO_Init();
|
|
McuLED_Init();
|
|
McuULN2003_Init();
|
|
}
|
|
|
|
|
|
void PL_Deinit(void){
|
|
McuULN2003_Deinit();
|
|
McuLED_Deinit();
|
|
McuGPIO_Deinit();
|
|
McuWait_Deinit();
|
|
McuLib_Deinit();
|
|
}
|
|
|