You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
177 B

/*
* blink.h
*
* Created on: Jan 8, 2021
* Author: zen
*/
#include "blink.h"
#include "gpio.h"
void BLINK::toggle(){
HAL_GPIO_TogglePin(LD2_GPIO_Port, LD2_Pin);
}