forked from trocache/RefKEIL
11 lines
179 B
C
11 lines
179 B
C
#include "stm32f10x.h"
|
|
#include "../gpiodriver.h"
|
|
|
|
int main ( void )
|
|
{
|
|
MyGPIO_Struct_TypeDef gpioA_test = {GPIOA,13,In_PullUp};
|
|
MyGPIO_Init(&gpioA_test);
|
|
do{
|
|
}while(1) ;
|
|
|
|
}
|