..HARDWAREled.h(4): error: #114: function "led_init" was referenced but not defined

2019-07-25 12:05发布

库函数跑马灯实验-----为什么会抱这个错误,只是在led.h里面的函数声明里加了一个static------我把static去掉就不会报错了.....不理解,求大神解释...led.h的内容
[mw_shl_code=applescript,true]#ifndef __LED_H

#define __LED_H
static void led_init(void);
#endif[/mw_shl_code]



led.c的内容
[mw_shl_code=applescript,true]#include "led.h"
//#include "stm32f10x.h"

void led_init(void)
{

}

int main()
{
        led_init();
                return 0;
}

[/mw_shl_code]


友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。