17 lines
255 B
C
17 lines
255 B
C
|
/*
|
|||
|
* gpio_init.h
|
|||
|
*
|
|||
|
* Created on: 4 <EFBFBD><EFBFBD><EFBFBD><EFBFBD>. 2023 <EFBFBD>.
|
|||
|
* Author: seklyuts
|
|||
|
*/
|
|||
|
|
|||
|
#ifndef SRC_GPIO_INIT_H_
|
|||
|
#define SRC_GPIO_INIT_H_
|
|||
|
|
|||
|
|
|||
|
void GpioInit(void);
|
|||
|
void Gpio20out(uint16_t out_bit);
|
|||
|
void Gpio21out(uint16_t out_bit);
|
|||
|
|
|||
|
#endif /* SRC_GPIO_INIT_H_ */
|