AVR Studio - Backend agent is not running
C언어,ARM / 2020. 6. 6. 22:59
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' 카테고리의 다른 글
AVR Studio - 툴바에 Device Programming icon추가 방법 (0) | 2020.06.06 |
---|---|
ATtiny-다운로드 (0) | 2020.06.06 |
uVision - 한글 깨질때 설정 방법 (0) | 2020.06.06 |
AtmelStudio-AVR Studio Backend agent is not running (0) | 2020.06.06 |
AtmelStudio-디버깅 에러 메세지 - 시뮬레이션 (0) | 2020.06.06 |