User Activity

/* USER CODE BEGIN Header *//** ****************************************************************************** * @file      : main.c * @brief     : Main program body ****************************************************************************** * @at...
can anyone please help, as i am having no result while trying to run a c program without using HAL Library , but i am getting correct result when i am using HAL Library, can anyone please tell me why??here is the code:with HAL Library:#include "main....
Please try to be as detailed as possible as i just started to make sense out of the STM 32 discovery kit., I am a complete beginner...​
#include "stm32f10x.h"void EXTI3_IRQ_IRQHandler(void){ if(EXTI->PR & EXTI_PR_PR3) { EXTI->PR |= EXTI_PR_PR3; GPIOA-> BRR |= GPIO_BRR_BS1; }}int main(void){ RCC ->APB2ENR |= RCC_APB2ENR_IOPAEN;   //LED(OUTPUT PIN)(PA1) GPIOA->CRL &= ~(GPIO_CRL_CNF1); ...