포스트

stm8s

ST 마이컴 개발시 설치 TOOLS


STM8S_DISCOVERY


STM8S-DISCOVERY


All features


참고 문서




기타 자료


참고자료

실행 순서

  • 하고자 하는 디렉토리로 이동한다.
  • make 하면 makefile을 참고하여 실행한다.
  • 결과 화일은 obj 와 exe에 생성된다.
  • xx.hex 화일을 다운로드한다.
  • ST Visual Programmer 을 통해서 화일을 읽어 들인다.
  • File -> Open (xx.hex)
  • Configure 선택 (ST-LINK - USB - SWIM - STM8S105x6) OK
  • Program -> Current Tab (Ctl-P)
  • File -> Exit

Use SDCC Toolchain : Notice: make sure you can find your ‘target’ and ‘interface’ in OpenOcd config folder !, like: ‘target/stm8s003.cfg’

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"version": "0.2.0",
"configurations": [
  {
    "type": "stm8-debug",
    "request": "launch",
    "name": "Launch Program",
    "serverType": "stm8-sdcc",
    "executable": ".\\out\\Debug\\stm8_demo.elf",
    "openOcdConfigs": [
    "interface/stlink.cfg",
    "target/stm8s003.cfg"
    ]
  }
]
}
이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.