AVR Studio err
C언어,ARM / 2020. 9. 26. 23:46
AVR Studio
Backend agent is not running
=>관리자권한으로 실행
Warning function declaration isn't a prototype
=> void xxx() => void xxx(void)
Warning no previous prototype for 'xx'
=>
void xxx(void); <<== ADD
void xxx(void)
{
...
}
each undeclared identifier is reported only once for each function it appears in
=> define된것이 없다. #include "xx.h"
'C언어,ARM' 카테고리의 다른 글
WINDOWS.H already included (0) | 2020.09.26 |
---|---|
DLL (0) | 2020.09.26 |
CTabCtrl_CalSize (0) | 2020.09.26 |
다이얼로그 창의 자식창 영역좌표 얻기 (0) | 2020.09.26 |
excel RoundDown (0) | 2020.09.26 |