11 lines
179 B
C
11 lines
179 B
C
#include "stm32f10x.h"
|
|
#include "gpiodriver.h"
|
|
|
|
int main ( void )
|
|
{
|
|
MyGPIO_Struct_TypeDef gpioC_test = {&(GPIOA),5,Out_PullUp};
|
|
MyGPIO_Init(&gpioC_test);
|
|
do{
|
|
}while(1) ;
|
|
|
|
}
|