Minor coding style and consistency fixes

This commit is contained in:
2024-09-05 22:15:43 +02:00
parent 0bd4866816
commit b118631500
11 changed files with 84 additions and 69 deletions

View File

@@ -1,15 +1,15 @@
#ifndef MAD_BUS_MOSFET_H
#define MAD_BUS_MOSFET_H
#ifndef MAD_CORE_BUS_MOSFET_H
#define MAD_CORE_BUS_MOSFET_H
#include <avr/io.h>
// MOSFETS
// Devices
#define MOS01 PB0 // Peltier Enable
#define MOS02 PB1 // Heating Enable
#define MOS03 PB2 // Lights Enable
int MOS_Init(void);
void MOS_Enable(int port);
void MOS_Disable(int port);
int MOS_Init(void);
void MOS_Enable(int port);
void MOS_Disable(int port);
#endif // MAD_BUS_MOSFET_H
#endif // MAD_CORE_BUS_MOSFET_H