19 lines
299 B
C
19 lines
299 B
C
/*
|
|
* hread_interface.h
|
|
*
|
|
* Created on: 2022年4月15日
|
|
* Author: wuwen
|
|
*/
|
|
|
|
#ifndef HREAD_INTERFACE_H_
|
|
#define HREAD_INTERFACE_H_
|
|
|
|
#include "main.h"
|
|
|
|
|
|
extern I2C_HandleTypeDef hi2c1;
|
|
|
|
#define RUNLED(x) HAL_GPIO_WritePin(run_led_GPIO_Port, run_led_Pin, x)
|
|
|
|
#endif /* HREAD_INTERFACE_H_ */
|