먼저 IAR Embedded Workbench에서 사용할 수 있는 일반적인 단축키가 있습니다. 복사를 위한 [Ctrl+C], 붙여넣기를 위한 [Ctrl+V] 두 가지 예시가 있습니다. 그러나 일상 작업을 더 효과적이게 해주는 도구별 단축키도 있습니다. 여기 가장 중요하다고 생각하는 단축키들을 소개합니다.
편집기와 빌더를 위한 단축키
C-SPY 디버거 단축키
기능 |
키 |
설명 |
Go | F5 | Run the halted target device |
Step Over | F10 | Step over the source code |
Step In | F11 | Step in to the called function |
Step Out | Shift + F11 | Step out from the function |
Break | Alt + D + B | Try to stop the running target |
Reset | Alt + D + R | Execute Reset command CPU must be stopped |
Stop Debugging | Ctrl + Shift + D | Quit Debug session |
단축키를 직접 지정하세요!
아래의 리스트에 있는 것보다 다른 단축키를 사용하고 싶거나 추가로 단축키를 사용하고 싶으신가요? 문제 없습니다. Tools > Options를 선택하여 IAR Embedded Workbench에서 직접 단축 단축키를 생성할 수 있습니다.
단축키를 커스텀 하려면, Key Bindings를 선택하고, 드롭다운 리스트에서 Edit으로 지정합니다. 이 화면에서, 새 단축키 또한 생성할 수 있습니다.
크롬이나 파이어폭스를 사용하고 계시다면 [Ctrl+D]를 눌러 이 페이지를 웹브라우저에 북마크 하거나, [Ctrl+P]를 눌러 이 페이지를 인쇄하여 책상에서 활용하시기 바랍니다.
기능 |
키 |
설명 |
Find | Ctrl + F | Search words in the active text file |
Find in Files | Ctrl + Shift + F | Search the string not only in the active file but also project directories, include files. |
Replace | Ctrl + H | Replace the strings. It is useful for refactoring. |
Go to Definition | F12 | Jump to the definition of selected variable, function, or so on. |
Block Comment | Ctrl + K | Block comment for the selected lines. You can also uncomment with Ctrl + Shift + K |
Auto Indent | Ctrl + T | Adjust the indent of selected lines of a source code. |
Match Brackets | Ctrl + B | Highlight the corresponding bracket range to make it easy to understand the matches. |
Toggle Breakpoint | F9 | Set code breakpoint to the line. |
Make | F7 | Make the project |
Rebuild All | Alt + P+B | Similar to Make, but it also cleans the existing objects before Make |
Next Error | F4 | Jump to the Build Error message if there are any in Build window. |
Navigate BackWord | Alt + Left | Jump back to the previous position from "Go To Definition" or so on. |
Download & Debug | Ctrl + D | Download the executable code to the device and start C-SPY Debug session. |