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
420 B
26 lines
420 B
/*
|
|
* application.h
|
|
*
|
|
* Created on: 22.09.2022
|
|
* Author: jonas
|
|
*/
|
|
|
|
#ifndef APPLICATION_H_
|
|
#define APPLICATION_H_
|
|
|
|
#include "splitflap_pins.h"
|
|
|
|
#define LED_BLUE_GPIO GPIOC
|
|
#define LED_BLUE_PORT PORTC
|
|
#define LED_BLUE_PIN 2U
|
|
|
|
/* Application initialization */
|
|
void App_Init(void);
|
|
|
|
/* Application run */
|
|
void App_Run(void);
|
|
|
|
/* Application de-initialization */
|
|
void App_Deinit(void);
|
|
|
|
#endif /* APPLICATION_H_ */
|
|
|