-Added GPIO.c -Added ADC.c -Added mcpwm.c -Added all headrs for new files -Fixed Header usage -Fixed parsed pins only import once
13 lines
172 B
C
13 lines
172 B
C
// functions.h
|
|
#ifndef FUNCTIONS_H
|
|
#define FUNCTIONS_H
|
|
|
|
|
|
#include "ssd1306.h"
|
|
#include <stdbool.h>
|
|
|
|
|
|
bool get_Hall(int HallSensorGPIO);
|
|
SSD1306_t *configure_OLED();
|
|
|
|
#endif |