EPROMEmu/Inc/gpio.h

12 lines
185 B
C
Raw Normal View History

2019-08-16 01:32:46 -07:00
#ifndef GPIO_H
#define GPIO_H
2019-08-14 08:25:23 -07:00
2019-08-16 01:32:46 -07:00
#include "stm32f0xx_system.h"
2019-08-14 08:25:23 -07:00
2019-08-16 01:32:46 -07:00
void initialise_gpio(void);
2019-08-14 08:25:23 -07:00
void set_target_reset_state(uint8_t state);
uint8_t read_target_vcc(void);
2019-08-14 08:25:23 -07:00
#endif