经不住诱惑,今天开始玩STM8!麻烦过来人进来讲讲心得

2019-12-26 18:53发布

1、买的STM8 value line discovery板刚到手,从最简单的STM8S003开始吧。
2、下载了STVD/COSMIC。COSMIC_32K坛里有和谐好的,不过要先下载原版安装。
3、争取今晚把LED点亮。
4、其实我很看好STM8L152,之后要测试一下耗电和ADC性能。
5、纯业余玩的,还没想好弄点啥……
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
77条回答
millwood0
2019-12-29 14:13
I use a template + modules for pretty much all of my projects.

the following is for iar ewstm8.

here is the template for main.c
  1. #include <iostm8.h>
  2. #include "gpio.h"
  3. //#include "tmr2.h"                                                        //we use tim2
  4. //#include "tmr3.h"                                                        //we use tim3
  5. //#include "tmr4.h"                                                        //we use tim3

  6. //hardware configuration
  7. //end hardware configuration

  8. void mcu_init(void) {
  9. }

  10. int main( void ) {
  11.     mcu_init();                                       //reset the mcu

  12.     while (1) {
  13.     }
  14.     return 0;
  15. }
复制代码

一周热门 更多>