2012-06-30 03:01 PM
Hi all,
i used pubblic code of GPIOTOGGLE taken from ST site, i try to modify it for toggles led when user button was pressed. i used this modify to main.c STM32vldiscovery_PBInit(BUTTON_USER,BUTTON_MODE_GPIO); while (1) { if(STM32vldiscovery_PBGetState(BUTTON_USER)) STM32vldiscovery_LEDToggle(LED3); } but i can't compile cause this error Error[Li005]: no definition for ''EXTI_Init'' can someone help me? Thx.2012-06-30 08:21 PM
but i can't compile cause this error Error[Li005]: no definition for ''EXTI_Init''
Make sure the #include ''stm32f10x_exti.h'' is uncommented in stm32f10x_conf.h Make sure the project contains the library file Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c2012-07-01 01:06 AM
The project doesn't contains the library file Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c this was the error, now works good.
Very thx.