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.
10 lines
187 B
10 lines
187 B
#ifndef _APP_PIN_H__
|
|
#define _APP_PIN_H__
|
|
#include "stdint.h"
|
|
#include "stdbool.h"
|
|
|
|
#define PORT_A1_GATE_PIN GPIO_PIN8
|
|
|
|
void pin_init(void);
|
|
void pin_ctrl(uint8_t pin, bool isOn);
|
|
#endif
|
|
|